Make connections_count func a prototype
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 17 May 2011 10:29:58 +0000 (12:29 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 17 May 2011 10:29:58 +0000 (12:29 +0200)
src/connection.c

index 6e2c745..0a6f61c 100644 (file)
@@ -71,7 +71,8 @@ static int connection_use(int delta)
     return result;
 }
 
-int connections_count() {
+int connections_count(void)
+{
     return connection_use(0);
 }