1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
From: Debian Multimedia Maintainers <debian-multimedia@lists.debian.org>
Date: Tue, 13 Aug 2024 09:45:27 +0200
Subject: fix spelling mistakes
Forwarded: no
Last-Update: 2021-08-31
---
plugins/yuv4mpeg/e_mpeg.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/plugins/yuv4mpeg/e_mpeg.c b/plugins/yuv4mpeg/e_mpeg.c
index 2bf1658..8ecba27 100644
--- a/plugins/yuv4mpeg/e_mpeg.c
+++ b/plugins/yuv4mpeg/e_mpeg.c
@@ -124,17 +124,17 @@ static int open_mpeg(void * data, const char * filename,
if(!bg_search_file_exec("mpeg2enc", NULL))
{
- bg_log(BG_LOG_ERROR, LOG_DOMAIN, "Cannot find mpeg2enc exectuable");
+ bg_log(BG_LOG_ERROR, LOG_DOMAIN, "Cannot find mpeg2enc executable");
return 0;
}
if(!bg_search_file_exec("mp2enc", NULL))
{
- bg_log(BG_LOG_ERROR, LOG_DOMAIN, "Cannot find mp2enc exectuable");
+ bg_log(BG_LOG_ERROR, LOG_DOMAIN, "Cannot find mp2enc executable");
return 0;
}
if(!bg_search_file_exec("mplex", NULL))
{
- bg_log(BG_LOG_ERROR, LOG_DOMAIN, "Cannot find mplex exectuable");
+ bg_log(BG_LOG_ERROR, LOG_DOMAIN, "Cannot find mplex executable");
return 0;
}
return 1;
@@ -565,7 +565,7 @@ static int close_mpeg(void * data, int do_delete)
if(!bg_search_file_exec("mplex", &commandline))
{
- bg_log(BG_LOG_ERROR, LOG_DOMAIN, "Cannot find mplex exectuable");
+ bg_log(BG_LOG_ERROR, LOG_DOMAIN, "Cannot find mplex executable");
return 0;
}
/* Options */
|