diff options
| author | jvoisin | 2018-02-05 16:11:04 +0100 |
|---|---|---|
| committer | jvoisin | 2018-02-05 16:11:04 +0100 |
| commit | f0a956e825a83ff3a58d4714a92fbb945f6c8841 (patch) | |
| tree | 4aab944c1b56d57226c65b223054e6965c505369 /src/sp_utils.c | |
| parent | c853c3fcc7ba2efbf78ef80b46dddda57d132510 (diff) | |
Fix a oncst-related warning
Diffstat (limited to 'src/sp_utils.c')
| -rw-r--r-- | src/sp_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp_utils.c b/src/sp_utils.c index e1fc630..0625a2f 100644 --- a/src/sp_utils.c +++ b/src/sp_utils.c | |||
| @@ -130,7 +130,7 @@ int sp_log_request(const char* folder, const char* text_repr) { | |||
| 130 | continue; | 130 | continue; |
| 131 | } | 131 | } |
| 132 | 132 | ||
| 133 | const HashTable* ht = Z_ARRVAL(PG(http_globals)[zones[i].key]); | 133 | HashTable* ht = Z_ARRVAL(PG(http_globals)[zones[i].key]); |
| 134 | fprintf(file, "%s:", zones[i].str); | 134 | fprintf(file, "%s:", zones[i].str); |
| 135 | ZEND_HASH_FOREACH_STR_KEY_VAL(ht, variable_key, variable_value) { | 135 | ZEND_HASH_FOREACH_STR_KEY_VAL(ht, variable_key, variable_value) { |
| 136 | smart_str a = {0}; | 136 | smart_str a = {0}; |
