From 37fb993b5bf233e38f304df8fb8ec88c7a2fdce8 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 25 Jan 2012 16:19:45 -0600 Subject: Fix linear alphabet string errors --- src/3rdparty/sqlite/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/3rdparty/sqlite/util.c') 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 ){ -- cgit v1.2.3