From: Lutz M?l. <lu...@us...> - 2003-12-01 18:27:53
|
Update of /cvsroot/libexif/libexif/libexif/olympus In directory sc8-pr-cvs1:/tmp/cvs-serv26332/libexif/olympus Modified Files: mnote-olympus-entry.c Log Message: 2003-12-01 Lutz Mueller <lu...@us...> * libexif/olympus/mnote-olympus-entry.c: Now that EXIF_FORMAT_SSHORT is in exif-format.h, we do not need to define it any longer. Index: mnote-olympus-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-entry.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- mnote-olympus-entry.c 1 Dec 2003 18:09:29 -0000 1.3 +++ mnote-olympus-entry.c 1 Dec 2003 18:27:50 -0000 1.4 @@ -51,7 +51,8 @@ } \ } -#define EXIF_FORMAT_SSHORT 8 +#undef MIN +#define MIN(a, b) (((a) < (b)) ? (a) : (b)) char * mnote_olympus_entry_get_value (MnoteOlympusEntry *entry) |