# HG changeset patch # User diego # Date 1210507025 0 # Node ID 85dc7d81935cc3db8756c581fbe595c2225d81cd # Parent c512e684eb6f31833ee3adbc2a6c3e9d5549fadf cosmetics: Fix unknow vs. unknowN typo. diff -r c512e684eb6f -r 85dc7d81935c libmpcodecs/img_format.c --- 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; }