mirror of
				https://github.com/libssh2/libssh2.git
				synced 2025-11-03 22:13:11 +03:00 
			
		
		
		
	Fix underscore typo for 64-bit printf format specifiers on Windows
Commit 49ddf447ff was missing underscores.
			
			
This commit is contained in:
		@@ -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"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user