From: Dan F. <dfa...@us...> - 2007-10-30 03:23:42
|
Update of /cvsroot/libexif/libexif/libexif/pentax In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5799/libexif/pentax Modified Files: mnote-pentax-entry.c mnote-pentax-tag.c Log Message: Fixed some typos in messages. Made some structs const. Index: mnote-pentax-tag.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/pentax/mnote-pentax-tag.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -d -r1.7 -r1.8 --- mnote-pentax-tag.c 13 May 2007 19:21:47 -0000 1.7 +++ mnote-pentax-tag.c 30 Oct 2007 03:23:29 -0000 1.8 @@ -25,7 +25,7 @@ #include <libexif/i18n.h> -static struct { +static const struct { MnotePentaxTag tag; const char *name; const char *title; Index: mnote-pentax-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/pentax/mnote-pentax-entry.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -d -r1.12 -r1.13 --- mnote-pentax-entry.c 24 May 2007 06:47:14 -0000 1.12 +++ mnote-pentax-entry.c 30 Oct 2007 03:23:29 -0000 1.13 @@ -65,7 +65,7 @@ } \ } -static struct { +static const struct { ExifTag tag; struct { int index; @@ -263,7 +263,7 @@ static struct { }; /* Two-component values */ -static struct { +static const struct { ExifTag tag; struct { int index1, index2; |