Mercurial > mplayer.hg
changeset 26701:85dc7d81935c
cosmetics: Fix unknow vs. unknowN typo.
author | diego |
---|---|
date | Sun, 11 May 2008 11:57:05 +0000 |
parents | c512e684eb6f |
children | b5e7063ffade |
files | libmpcodecs/img_format.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
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; }