From: <rw...@us...> - 2002-11-15 12:00:41
|
Update of /cvsroot/libexif/libexif/libexif In directory usw-pr-cvs1:/tmp/cvs-serv1034 Modified Files: exif-format.c Log Message: Fixed an incorrect string representation of SLong. Index: exif-format.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-format.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- exif-format.c 10 Jun 2002 13:07:49 -0000 1.2 +++ exif-format.c 15 Nov 2002 12:00:10 -0000 1.3 @@ -51,7 +51,7 @@ {EXIF_FORMAT_SHORT, "Short", 2}, {EXIF_FORMAT_LONG, "Long", 4}, {EXIF_FORMAT_RATIONAL, "Rational", 8}, - {EXIF_FORMAT_SLONG, "SShort", 4}, + {EXIF_FORMAT_SLONG, "SLong", 4}, {EXIF_FORMAT_SRATIONAL, "SRational", 8}, {EXIF_FORMAT_UNDEFINED, N_("Undefined"), 1}, {0, NULL, 0} |