diff options
author | jcid <devnull@localhost> | 2007-11-17 15:18:35 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-11-17 15:18:35 +0100 |
commit | 9fce735bdcebd04957360f4b673b1dfe4645f0af (patch) | |
tree | 4d4321f2f1ba3aa089e61b48bf3812415bc76e1a /dpi/file.c | |
parent | dfd741a2a60c8013cf96666bb9f24408b863790e (diff) |
Added the "static" qualifier where missing.
Diffstat (limited to 'dpi/file.c')
-rw-r--r-- | dpi/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -876,7 +876,7 @@ static void *File_serve_clients(void *client) * Check a fd for activity, with a max timeout. * return value: 0 if timeout, 1 if input available, -1 if error. */ -int File_check_fd(int filedes, unsigned int seconds) +static int File_check_fd(int filedes, unsigned int seconds) { int st; fd_set set; |