Skip to content

Commit d4167c1

Browse files
committed
bugfix: macro directives were used inside a macro argument which made gcc 3.2.3 unhappy. thanks Feng Bin.
1 parent 204ce2b commit d4167c1

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/ngx_http_lua_util.c

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1205,18 +1205,10 @@ ngx_http_lua_dump_postponed(ngx_http_request_t *r)
12051205

12061206
ngx_log_error(NGX_LOG_WARN, r->connection->log, 0,
12071207
"postponed request for %V: "
1208-
1209-
#if defined(nginx_version) && nginx_version >= 8011
12101208
"c:%d, "
1211-
#endif
1212-
12131209
"a:%d, i:%d, r:%V, out:%V",
12141210
&r->uri,
1215-
1216-
#if defined(nginx_version) && nginx_version >= 8011
12171211
r->main->count,
1218-
#endif
1219-
12201212
r == r->connection->data, i,
12211213
pr->request ? &pr->request->uri : &nil_str, &out);
12221214
}

0 commit comments

Comments
 (0)