| 
     
      
      
      From: Dan F. <dfa...@us...> - 2017-05-26 11:22:20
      
     
   | 
Update of /cvsroot/libexif/libexif/libexif/fuji In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23166/fuji Modified Files: exif-mnote-data-fuji.c Log Message: Fixed some type warnings in log messages by explicitly casting to unsigned Index: exif-mnote-data-fuji.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/fuji/exif-mnote-data-fuji.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- exif-mnote-data-fuji.c 8 Oct 2010 04:20:03 -0000 1.13 +++ exif-mnote-data-fuji.c 26 May 2017 11:22:17 -0000 1.14 @@ -225,7 +225,7 @@ (dataofs + s >= buf_size)) { exif_log (en->log, EXIF_LOG_CODE_CORRUPT_DATA, "ExifMnoteDataFuji", "Tag data past end of " - "buffer (%u >= %u)", dataofs + s, buf_size); + "buffer (%u >= %u)", (unsigned)(dataofs + s), buf_size); continue; }  |