Skip to content

Commit 71e59e1

Browse files
committed
vcap,disp/delta: fix typo
(wrong gram. article 'an') + use MSG() now
1 parent e0ef3fb commit 71e59e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/video_capture/deltacast.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ vidcap_deltacast_init(struct vidcap_params *params, void **state)
512512
if (ChnType != VHD_CHNTYPE_HDSDI && ChnType != VHD_CHNTYPE_3GSDI &&
513513
ChnType != VHD_CHNTYPE_3GSDI_ASI && ChnType != VHD_CHNTYPE_12GSDI &&
514514
ChnType != VHD_CHNTYPE_12GSDI_ASI) {
515-
log_msg(LOG_LEVEL_ERROR, "[DELTACAST] ERROR : The selected channel is not an SDI one\n");
515+
MSG(ERROR, "ERROR : The selected channel is not a SDI one\n");
516516
HANDLE_ERROR
517517
}
518518

src/video_display/deltacast.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ static void *display_deltacast_init(struct module *parent, const char *fmt, unsi
448448
s->channel, VHD_CORE_BP_TX0_TYPE, VHD_CORE_BP_TX4_TYPE);
449449
VHD_GetBoardProperty(s->BoardHandle, Property, &ChnType);
450450
if((ChnType!=VHD_CHNTYPE_SDSDI)&&(ChnType!=VHD_CHNTYPE_HDSDI)&&(ChnType!=VHD_CHNTYPE_3GSDI)) {
451-
log_msg(LOG_LEVEL_ERROR, "[DELTACAST] ERROR : The selected channel is not an SDI one\n");
451+
MSG(ERROR, "ERROR : The selected channel is not a SDI one\n");
452452
HANDLE_ERROR
453453
}
454454

0 commit comments

Comments
 (0)