mirror of
				https://github.com/sqlite/sqlite.git
				synced 2025-11-03 16:53:36 +03:00 
			
		
		
		
	Change the OS_XXX pre-processor symbols to SQLITE_OS_XXX. Symbols "OS_UNIX", "OS_WIN", "OS_WINCE", "OS_OS2" and "OS_OTHER" are now "SQLITE_OS_UNIX", "SQLITE_OS_WIN", "SQLITE_OS_WINCE", "SQLITE_OS_OS2" and "SQLITE_OS_OTHER", respectively. (CVS 5311)
FossilOrigin-Name: cdd4cf4ce2ab363ddc3f27c5e44896e17269a161
This commit is contained in:
		@@ -12,7 +12,7 @@
 | 
			
		||||
** This file contains code to implement the "sqlite" command line
 | 
			
		||||
** utility for accessing SQLite databases.
 | 
			
		||||
**
 | 
			
		||||
** $Id: shell.c,v 1.181 2008/06/23 21:26:05 mihailim Exp $
 | 
			
		||||
** $Id: shell.c,v 1.182 2008/06/26 10:41:19 danielk1977 Exp $
 | 
			
		||||
*/
 | 
			
		||||
#include <stdlib.h>
 | 
			
		||||
#include <string.h>
 | 
			
		||||
@@ -1946,7 +1946,7 @@ int main(int argc, char **argv){
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  if( i<argc ){
 | 
			
		||||
#if defined(OS_OS2) && OS_OS2
 | 
			
		||||
#if defined(SQLITE_OS_OS2) && SQLITE_OS_OS2
 | 
			
		||||
    data.zDbFilename = (const char *)convertCpPathToUtf8( argv[i++] );
 | 
			
		||||
#else
 | 
			
		||||
    data.zDbFilename = argv[i++];
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user