From: Dan F. <dfa...@us...> - 2008-12-05 20:52:59
|
Update of /cvsroot/libexif/libexif/libexif/olympus In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3290/libexif/olympus Modified Files: mnote-olympus-entry.c Log Message: Fixed interpretation of the Olympus MNOTE_OLYMPUS_TAG_MODE tag Index: mnote-olympus-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-entry.c,v retrieving revision 1.41 retrieving revision 1.42 diff -u -p -d -r1.41 -r1.42 --- mnote-olympus-entry.c 26 Jun 2008 19:18:32 -0000 1.41 +++ mnote-olympus-entry.c 5 Dec 2008 20:52:53 -0000 1.42 @@ -556,7 +556,7 @@ mnote_olympus_entry_get_value (MnoteOlym vl = exif_get_long (entry->data + 4, entry->order); snprintf (buf, sizeof (buf), "/%li/", (long int) vl); strncat (v, buf, maxlen - strlen (v)); - vl = exif_get_long (entry->data + 4, entry->order); + vl = exif_get_long (entry->data + 8, entry->order); switch (vl) { case 1: strncat (v, _("left to right"), maxlen - strlen (v)); |