summaryrefslogtreecommitdiff
path: root/src/IO/dpi.c
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2007-11-17 15:18:35 +0100
committerjcid <devnull@localhost>2007-11-17 15:18:35 +0100
commit9fce735bdcebd04957360f4b673b1dfe4645f0af (patch)
tree4d4321f2f1ba3aa089e61b48bf3812415bc76e1a /src/IO/dpi.c
parentdfd741a2a60c8013cf96666bb9f24408b863790e (diff)
Added the "static" qualifier where missing.
Diffstat (limited to 'src/IO/dpi.c')
-rw-r--r--src/IO/dpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IO/dpi.c b/src/IO/dpi.c
index 3e68fb6f..c253f08c 100644
--- a/src/IO/dpi.c
+++ b/src/IO/dpi.c
@@ -130,7 +130,7 @@ static void Dpi_conn_free(dpi_conn_t *conn)
* Check whether a conn is still valid.
* Return: 1 if found, 0 otherwise
*/
-int Dpi_conn_valid(int key)
+static int Dpi_conn_valid(int key)
{
return (a_Klist_get_data(ValidConns, key)) ? 1 : 0;
}