From 050c132e37fd994ed176952829b37cc9a9131282 Mon Sep 17 00:00:00 2001 From: Dennis Schafroth Date: Thu, 3 Nov 2011 15:52:36 +0100 Subject: [PATCH] Typo: missing pointer in type cast --- src/http_command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http_command.c b/src/http_command.c index d4970a4..6f04346 100644 --- a/src/http_command.c +++ b/src/http_command.c @@ -534,7 +534,7 @@ static void termlist_response(struct http_channel *c) static void termlist_result_ready(void *data) { - struct http_channel *c = (struct http_channel) data; + struct http_channel *c = (struct http_channel *) data; termlist_response(c); } -- 1.7.10.4