mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
Add -Wwrite-strings and fix warnings.
Need to be const-clean when handling string literals.
This commit is contained in:
parent
884ac59256
commit
eb7b8cf31a
2 changed files with 4 additions and 4 deletions
2
Makefile
2
Makefile
|
@ -1,6 +1,6 @@
|
|||
PROGS=notmuch
|
||||
|
||||
CXXWARNINGS_FLAGS=-Wall -Wextra
|
||||
CXXWARNINGS_FLAGS=-Wall -Wextra -Wwrite-strings
|
||||
CWARNINGS_FLAGS=$(CXXWARNINGS_FLAGS)
|
||||
|
||||
CDEPENDS_FLAGS=`pkg-config --cflags glib-2.0 talloc`
|
||||
|
|
6
date.c
6
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"
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue