mirror of
				https://github.com/sqlite/sqlite.git
				synced 2025-11-03 16:53:36 +03:00 
			
		
		
		
	Fix harmless compiler warnings.
FossilOrigin-Name: e7d2ec048c88237c124fbe598f8f7e950d43d90f
This commit is contained in:
		@@ -113,11 +113,11 @@ extern int pclose(FILE*);
 | 
			
		||||
** routines take care of that.
 | 
			
		||||
*/
 | 
			
		||||
#if defined(_WIN32) || defined(WIN32)
 | 
			
		||||
static setBinaryMode(FILE *out){
 | 
			
		||||
static void setBinaryMode(FILE *out){
 | 
			
		||||
  fflush(out);
 | 
			
		||||
  _setmode(_fileno(out), _O_BINARY);
 | 
			
		||||
}
 | 
			
		||||
static setTextMode(FILE *out){
 | 
			
		||||
static void setTextMode(FILE *out){
 | 
			
		||||
  fflush(out);
 | 
			
		||||
  _setmode(_fileno(out), _O_TEXT);
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user