Revision: 1282
http://geeqie.svn.sourceforge.net/geeqie/?rev=1282&view=rev
Author: zas_
Date: 2008-11-27 12:34:03 +0000 (Thu, 27 Nov 2008)
Log Message:
-----------
Fix up unsigned expression always true warning.
Modified Paths:
--------------
trunk/src/format_raw.c
Modified: trunk/src/format_raw.c
===================================================================
--- trunk/src/format_raw.c 2008-11-27 12:33:07 UTC (rev 1281)
+++ trunk/src/format_raw.c 2008-11-27 12:34:03 UTC (rev 1282)
@@ -90,7 +90,7 @@
guint i;
if (len < offset + 2) return 0;
- if (type < 0 || type > EXIF_FORMAT_COUNT) return 0;
+ if (type > EXIF_FORMAT_COUNT) return 0;
count = exif_byte_get_int16(data + offset, bo);
offset += 2;
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Geeqie-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geeqie-svn