From: Dan F. <dfa...@us...> - 2007-10-30 03:23:42
|
Update of /cvsroot/libexif/libexif/libexif/olympus In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5799/libexif/olympus Modified Files: mnote-olympus-entry.c mnote-olympus-tag.c Log Message: Fixed some typos in messages. Made some structs const. Index: mnote-olympus-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-entry.c,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -d -r1.33 -r1.34 --- mnote-olympus-entry.c 26 Jun 2007 02:31:42 -0000 1.33 +++ mnote-olympus-entry.c 30 Oct 2007 03:23:29 -0000 1.34 @@ -63,7 +63,7 @@ } \ } -static struct { +static const struct { ExifTag tag; ExifFormat fmt; struct { Index: mnote-olympus-tag.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-tag.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -d -r1.12 -r1.13 --- mnote-olympus-tag.c 11 May 2007 06:22:44 -0000 1.12 +++ mnote-olympus-tag.c 30 Oct 2007 03:23:29 -0000 1.13 @@ -26,7 +26,7 @@ #include <stdlib.h> -static struct { +static const struct { MnoteOlympusTag tag; const char *name; const char *title; @@ -43,7 +43,7 @@ static struct { {MNOTE_NIKON_TAG_FOCUSMODE, "FOCUSMODE", N_("Focus Mode"), ""}, {MNOTE_NIKON_TAG_FLASHSETTING, "FLASHSETTING", N_("Flash Setting"), ""}, {MNOTE_NIKON_TAG_FLASHMODE, "FLASHMODE", N_("Flash Mode"), ""}, - {MNOTE_NIKON_TAG_WHITEBALANCEFINE,"WHITEBALANCEFINE",N_("Whitebalance fine ajustment"), ""}, + {MNOTE_NIKON_TAG_WHITEBALANCEFINE,"WHITEBALANCEFINE",N_("Whitebalance fine adjustment"), ""}, {MNOTE_NIKON_TAG_WHITEBALANCERB, "WHITEBALANCERB", N_("Whitebalance RB"), ""}, {MNOTE_NIKON_TAG_UNKNOWN_0X000D, NULL, NULL, NULL}, {MNOTE_NIKON_TAG_ISOSELECTION, "ISOSELECTION", N_("Isoselection"), ""}, |