diff libmpcodecs/img_format.c @ 26701:85dc7d81935c

cosmetics: Fix unknow vs. unknowN typo.
author diego
date Sun, 11 May 2008 11:57:05 +0000
parents a9bf0730f6b2
children 63630c09e237
line wrap: on
line diff
--- a/libmpcodecs/img_format.c	Sun May 11 11:12:34 2008 +0000
+++ b/libmpcodecs/img_format.c	Sun May 11 11:57:05 2008 +0000
@@ -4,7 +4,7 @@
 
 const char *vo_format_name(int format)
 {
-    static char unknow_format[20];
+    static char unknown_format[20];
     switch(format)
     {
 	case IMGFMT_RGB1: return("RGB 1-bit");
@@ -68,6 +68,6 @@
 	case IMGFMT_XVMC_MOCO_MPEG2: return("MPEG1/2 Motion Compensation");
 	case IMGFMT_XVMC_IDCT_MPEG2: return("MPEG1/2 Motion Compensation and IDCT");
     }
-    snprintf(unknow_format,20,"Unknown 0x%04x",format);
-    return unknow_format;
+    snprintf(unknown_format,20,"Unknown 0x%04x",format);
+    return unknown_format;
 }