diff options
author | Michael Adam <obnox@samba.org> | 2009-08-07 09:27:51 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-08-07 09:27:51 +0200 |
commit | 87f5657db01d321706c79d232919f0c8c5432853 (patch) | |
tree | 4132f2a88a7762638af69553bea92dfdadc9c4d7 | |
parent | 1052502b63841dc366591ba2acb845ab85ce7304 (diff) | |
download | tinyproxy-87f5657db01d321706c79d232919f0c8c5432853.tar.gz tinyproxy-87f5657db01d321706c79d232919f0c8c5432853.zip |
log: make const char array const.
Michael
Diffstat (limited to '')
-rw-r--r-- | src/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ #include "utils.h" #include "vector.h" -static char *syslog_level[] = { +static const char *syslog_level[] = { NULL, NULL, "CRITICAL", |