Typo: missing pointer in type cast
authorDennis Schafroth <dennis@indexdata.com>
Thu, 3 Nov 2011 14:52:36 +0000 (15:52 +0100)
committerDennis Schafroth <dennis@indexdata.com>
Thu, 3 Nov 2011 14:52:36 +0000 (15:52 +0100)
src/http_command.c

index d4970a4..6f04346 100644 (file)
@@ -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);
 }