diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2018-06-30 13:57:19 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2018-06-30 14:37:04 +0200 |
commit | 4b0fd10a99a5901e3f58eb578d54b43835d71869 (patch) | |
tree | e84adfb54def6db703ed6a54a18a63f903968091 /examples | |
parent | 3350fd747963c8f797d5520984ac35701561e7f3 (diff) | |
download | libssh-4b0fd10a99a5901e3f58eb578d54b43835d71869.tar.gz libssh-4b0fd10a99a5901e3f58eb578d54b43835d71869.tar.xz libssh-4b0fd10a99a5901e3f58eb578d54b43835d71869.zip |
examples: Define LIMIT as unsinged long
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/senddata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/senddata.c b/examples/senddata.c index acc1bebc..042b462b 100644 --- a/examples/senddata.c +++ b/examples/senddata.c @@ -3,7 +3,7 @@ #include <libssh/libssh.h> #include "examples_common.h" -#define LIMIT 0x100000000 +#define LIMIT 0x100000000UL int main(void) { ssh_session session; |