diff options
Diffstat (limited to 'src/test5.c')
-rw-r--r-- | src/test5.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/test5.c b/src/test5.c index f42840169..4409e9447 100644 --- a/src/test5.c +++ b/src/test5.c @@ -15,10 +15,10 @@ ** is used for testing the SQLite routines for converting between ** the various supported unicode encodings. ** -** $Id: test5.c,v 1.5 2004/05/22 03:05:34 danielk1977 Exp $ +** $Id: test5.c,v 1.6 2004/05/31 18:51:58 drh Exp $ */ #include "sqliteInt.h" -#include "os.h" /* to get SQLITE3_BIGENDIAN */ +#include "os.h" /* to get SQLITE_BIGENDIAN */ #include "tcl.h" #include <stdlib.h> #include <string.h> @@ -167,7 +167,7 @@ static int sqlite_utf16to8( } in = Tcl_GetByteArrayFromObj(objv[1], 0); - out = sqlite3utf16to8(in, -1, SQLITE3_BIGENDIAN); + out = sqlite3utf16to8(in, -1, SQLITE_BIGENDIAN); res = Tcl_NewByteArrayObj(out, strlen(out)+1); sqliteFree(out); @@ -221,6 +221,3 @@ int Sqlitetest5_Init(Tcl_Interp *interp){ return TCL_OK; } - - - |