diff options
author | Timothy Pearson <[email protected]> | 2012-01-25 16:19:45 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-25 16:19:45 -0600 |
commit | 37fb993b5bf233e38f304df8fb8ec88c7a2fdce8 (patch) | |
tree | d98a40c4c74a36cebfdd8092f60af4f941386a8c /src/3rdparty/sqlite/func.c | |
parent | 663d27a3f780102518e9bdef0fbaf5e5d1b16d52 (diff) | |
download | tqt3-37fb993b5bf233e38f304df8fb8ec88c7a2fdce8.tar.gz tqt3-37fb993b5bf233e38f304df8fb8ec88c7a2fdce8.zip |
Fix linear alphabet string errors
Diffstat (limited to 'src/3rdparty/sqlite/func.c')
-rw-r--r-- | src/3rdparty/sqlite/func.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/sqlite/func.c b/src/3rdparty/sqlite/func.c index f580a7d45..fe67d1301 100644 --- a/src/3rdparty/sqlite/func.c +++ b/src/3rdparty/sqlite/func.c @@ -365,7 +365,7 @@ static void soundexFunc(sqlite_func *context, int argc, const char **argv){ static void randStr(sqlite_func *context, int argc, const char **argv){ static const unsigned char zSrc[] = "abcdefghijklmnopqrstuvwxyz" - "ABCDEFGHIJKLMNOPTQRSTUVWXYZ" + "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "0123456789" ".-!,:*^+=_|?/<> "; int iMin, iMax, n, r, i; |