diff options
-rw-r--r-- | include/libssh/libssh.h | 2 | ||||
-rw-r--r-- | libssh/client.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index 137531a..eb2b466 100644 --- a/include/libssh/libssh.h +++ b/include/libssh/libssh.h @@ -178,7 +178,7 @@ void ssh_disconnect(SSH_SESSION *session); int ssh_service_request(SSH_SESSION *session,char *service); char *ssh_get_issue_banner(SSH_SESSION *session); /* get copyright informations */ -const char *ssh_copyright(); +const char *ssh_copyright(void); /* string.h */ /* You can use these functions, they won't change */ diff --git a/libssh/client.c b/libssh/client.c index f6303ef..1dc1398 100644 --- a/libssh/client.c +++ b/libssh/client.c @@ -386,7 +386,7 @@ void ssh_disconnect(SSH_SESSION *session){ ssh_cleanup(session); } -const char *ssh_copyright(){ +const char *ssh_copyright(void) { return LIBSSH_VERSION " (c) 2003-2008 Aris Adamantiadis (aris@0xbadc0de.be)" " Distributed under the LGPL, please refer to COPYING file for informations" " about your rights" ; |