From: Dan F. <dfa...@us...> - 2009-05-29 04:43:50
|
Update of /cvsroot/libexif/libexif/libexif/canon In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20440/libexif/canon Modified Files: mnote-canon-entry.c Log Message: Fixed negative exposure values in Canon makernotes (bug #2797280) Index: mnote-canon-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/canon/mnote-canon-entry.c,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -d -r1.28 -r1.29 --- mnote-canon-entry.c 9 Oct 2008 09:47:30 -0000 1.28 +++ mnote-canon-entry.c 29 May 2009 04:43:41 -0000 1.29 @@ -642,7 +642,7 @@ mnote_canon_entry_get_value (const Mnote case 5: case 14: case 16: - snprintf (val, maxlen, _("%.2f EV"), vs / 32.0); + snprintf (val, maxlen, _("%.2f EV"), (ExifSShort)vs / 32.0); break; case 3: case 20: |