diff options
author | Nuno Lopes <nlopess@php.net> | 2006-07-22 15:22:56 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2006-07-22 15:22:56 +0000 |
commit | ff591e2cf013b82b20f839912e3b16a0c2d7b66e (patch) | |
tree | b4b3ba122fcfd76891f677d33b5fc64631fabf66 /ext/json/json.c | |
parent | 5e7efb5ec9de2669701ba82b0f20c92176f9ae10 (diff) | |
download | php-git-ff591e2cf013b82b20f839912e3b16a0c2d7b66e.tar.gz |
more const keywording
Diffstat (limited to 'ext/json/json.c')
-rw-r--r-- | ext/json/json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/json.c b/ext/json/json.c index 1b7de735d9..cbd5d3deb6 100644 --- a/ext/json/json.c +++ b/ext/json/json.c @@ -33,7 +33,7 @@ /* If you declare any globals in php_json.h uncomment this: ZEND_DECLARE_MODULE_GLOBALS(json) */ -static char digits[] = "0123456789abcdef"; +static const char digits[] = "0123456789abcdef"; /* {{{ json_functions[] * |