summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/sqlite/util.c
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-01-25 16:19:45 -0600
committerTimothy Pearson <[email protected]>2012-01-25 16:19:45 -0600
commit37fb993b5bf233e38f304df8fb8ec88c7a2fdce8 (patch)
treed98a40c4c74a36cebfdd8092f60af4f941386a8c /src/3rdparty/sqlite/util.c
parent663d27a3f780102518e9bdef0fbaf5e5d1b16d52 (diff)
downloadtqt3-37fb993b5bf233e38f304df8fb8ec88c7a2fdce8.tar.gz
tqt3-37fb993b5bf233e38f304df8fb8ec88c7a2fdce8.zip
Fix linear alphabet string errors
Diffstat (limited to 'src/3rdparty/sqlite/util.c')
-rw-r--r--src/3rdparty/sqlite/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/sqlite/util.c b/src/3rdparty/sqlite/util.c
index 6dbaba787..074afedf9 100644
--- a/src/3rdparty/sqlite/util.c
+++ b/src/3rdparty/sqlite/util.c
@@ -805,7 +805,7 @@ void sqliteRealToSortable(double r, char *z){
** This means we can not use the traditional base-64 digit set. */
static const char zDigit[] =
"0123456789"
- "ABCDEFGHIJKLMNOPTQRSTUVWXYZ"
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"|~";
if( r<0.0 ){