From 6b9c039136a9169aa81dbcda9cf7afc6a13cb80c Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 17 May 2011 12:29:58 +0200 Subject: [PATCH] Make connections_count func a prototype --- src/connection.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/connection.c b/src/connection.c index 6e2c745..0a6f61c 100644 --- a/src/connection.c +++ b/src/connection.c @@ -71,7 +71,8 @@ static int connection_use(int delta) return result; } -int connections_count() { +int connections_count(void) +{ return connection_use(0); } -- 1.7.10.4