diff options
author | Andreas Schneider <mail@cynapses.org> | 2009-02-02 15:14:19 +0000 |
---|---|---|
committer | Andreas Schneider <mail@cynapses.org> | 2009-02-02 15:14:19 +0000 |
commit | f4d74e285e9af06c1da245198faa366d6f1e06c4 (patch) | |
tree | 3826ddca3194ff99756d6cebbd3d01b9a0660f5b /include/libssh/libssh.h | |
parent | fc0928a5721041e70807c33bd16fe852225d97f7 (diff) | |
download | libssh-f4d74e285e9af06c1da245198faa366d6f1e06c4.tar.gz libssh-f4d74e285e9af06c1da245198faa366d6f1e06c4.tar.xz libssh-f4d74e285e9af06c1da245198faa366d6f1e06c4.zip |
Fix compiler warnings in buffer implementation.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@206 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'include/libssh/libssh.h')
-rw-r--r-- | include/libssh/libssh.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index 406d3d9..137531a 100644 --- a/include/libssh/libssh.h +++ b/include/libssh/libssh.h @@ -308,7 +308,7 @@ void ssh_options_set_auth_callback(SSH_OPTIONS *opt, ssh_auth_callback cb, /** creates a new buffer */ -BUFFER *buffer_new(); +BUFFER *buffer_new(void); void buffer_free(BUFFER *buffer); /* buffer_get returns a pointer to the begining of the buffer. no position is taken into account */ void *buffer_get(BUFFER *buffer); |