examples: Define LIMIT as unsinged long

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Andreas Schneider 2018-06-30 13:57:19 +02:00
parent 3350fd7479
commit 4b0fd10a99

View File

@ -3,7 +3,7 @@
#include <libssh/libssh.h>
#include "examples_common.h"
#define LIMIT 0x100000000
#define LIMIT 0x100000000UL
int main(void) {
ssh_session session;