]> git.notmuchmail.org Git - notmuch/blobdiff - date.c
Add -Wwrite-strings and fix warnings.
[notmuch] / date.c
diff --git a/date.c b/date.c
index c116bbd5f432f54dfa41b6aa991a0caccdd0b972..44f5a99acd8bb509b8058c20c0b482d93ab61c2b 100644 (file)
--- a/date.c
+++ b/date.c
@@ -79,7 +79,7 @@ static unsigned char gmime_datetok_table[256] = {
 
 /* hrm, is there a library for this stuff? */
 static struct {
-       char *name;
+       const char *name;
        int offset;
 } tz_offsets [] = {
        { "UT", 0 },
@@ -99,12 +99,12 @@ static struct {
        { "Y", 1200 },
 };
 
-static char *tm_months[] = {
+static const char *tm_months[] = {
        "Jan", "Feb", "Mar", "Apr", "May", "Jun",
        "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
 };
 
-static char *tm_days[] = {
+static const char *tm_days[] = {
        "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
 };