Fix underscore typo for 64-bit printf format specifiers on Windows

Commit 49ddf447ff4bd80285f926eac0115f4e595f9425 was missing underscores.
This commit is contained in:
Peter Stuge 2010-06-17 12:23:25 +02:00
parent 537a00ee4b
commit 38940f45d2

View File

@ -1150,7 +1150,7 @@ void _libssh2_init_if_needed (void);
#define ARRAY_SIZE(a) (sizeof ((a)) / sizeof ((a)[0])) #define ARRAY_SIZE(a) (sizeof ((a)) / sizeof ((a)[0]))
/* define to output the libssh2_int64_t type in a *printf() */ /* define to output the libssh2_int64_t type in a *printf() */
#if defined( BORLANDC ) || defined( _MSC_VER ) || defined( MINGW32 ) #if defined( __BORLANDC__ ) || defined( _MSC_VER ) || defined( __MINGW32__ )
#define LIBSSH2_INT64_T_FORMAT "I64" #define LIBSSH2_INT64_T_FORMAT "I64"
#else #else
#define LIBSSH2_INT64_T_FORMAT "ll" #define LIBSSH2_INT64_T_FORMAT "ll"