diff options
Diffstat (limited to 'src/IO')
-rw-r--r-- | src/IO/dpi.c | 2 |
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; } |