From a5fc82bc7017e41a153b997fecabd6d28fb440df Mon Sep 17 00:00:00 2001 From: Thomas Porzelt Date: Thu, 10 Sep 2009 22:26:58 +0200 Subject: [PATCH] fix syntax error introduced by last-minute cleanups... --- src/weighttp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/weighttp.c b/src/weighttp.c index 1e56e40..8b8eb77 100644 --- a/src/weighttp.c +++ b/src/weighttp.c @@ -235,7 +235,7 @@ int main(int argc, char *argv[]) { return 2; } - if (NULL == (config.request = forge_request(argv[optind], config.keep_alive, &host, &port)) { + if (NULL == (config.request = forge_request(argv[optind], config.keep_alive, &host, &port))) { return 1; }