minor syntax

This commit is contained in:
Josh Coalson
2006-10-03 01:02:44 +00:00
parent 6a630c37b2
commit a65fd93119
5 changed files with 18 additions and 18 deletions

View File

@@ -340,7 +340,7 @@ FLAC__StreamMetadata *grabbag__picture_parse_specification(const char *spec, con
if(0 == f)
*error_message = error_messages[5];
else {
if(fread(buffer, 1, size, f) != size)
if(fread(buffer, 1, size, f) != (size_t)size)
*error_message = error_messages[6];
fclose(f);
if(0 == *error_message) {