diff options
author | drh <drh@noemail.net> | 2006-10-05 11:43:53 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-10-05 11:43:53 +0000 |
commit | bb2abb2c09e4967eeb7cc438ab6b1ed9e761f4c6 (patch) | |
tree | 06500ae7c7e66d0f7873276124e3816a7ede2577 /src/utf.c | |
parent | 53c36d544448f2e813fb248ba2a522a51279313b (diff) | |
download | sqlite-bb2abb2c09e4967eeb7cc438ab6b1ed9e761f4c6.tar.gz sqlite-bb2abb2c09e4967eeb7cc438ab6b1ed9e761f4c6.zip |
Fix another UTF conversion problem on x64. Ticket #2008. (CVS 3466)
FossilOrigin-Name: d16523e555afa1e6e89409f614fd665261fa3865
Diffstat (limited to 'src/utf.c')
-rw-r--r-- | src/utf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ ** This file contains routines used to translate between UTF-8, ** UTF-16, UTF-16BE, and UTF-16LE. ** -** $Id: utf.c,v 1.41 2006/10/04 15:23:22 drh Exp $ +** $Id: utf.c,v 1.42 2006/10/05 11:43:53 drh Exp $ ** ** Notes on UTF-8: ** @@ -556,7 +556,7 @@ void sqlite3utf16Substr( ** characters in each encoding are inverses of each other. */ void sqlite3utfSelfTest(){ - int i; + unsigned int i; unsigned char zBuf[20]; unsigned char *z; int n; |