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