summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2010-11-03 14:39:20 +0800
committerPeng Wu <alexepico@gmail.com>2010-11-03 14:39:20 +0800
commit40dbcb94a8058ce45edef5c6e5238c32121ebc1e (patch)
treefeac3b338c80b51a29b7772c38a91ebb8bb4db87 /src
parent7e8a335a57c64349318d2e8a8e36eae36a8fa8f7 (diff)
downloadlibpinyin-40dbcb94a8058ce45edef5c6e5238c32121ebc1e.tar.gz
libpinyin-40dbcb94a8058ce45edef5c6e5238c32121ebc1e.tar.xz
libpinyin-40dbcb94a8058ce45edef5c6e5238c32121ebc1e.zip
fixes a typo
Diffstat (limited to 'src')
-rw-r--r--src/storage/phrase_index.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/storage/phrase_index.cpp b/src/storage/phrase_index.cpp
index 8bd65f6..364601e 100644
--- a/src/storage/phrase_index.cpp
+++ b/src/storage/phrase_index.cpp
@@ -288,6 +288,8 @@ bool FacadePhraseIndex::load_text(guint8 phrase_index, FILE * infile){
if ( feof(infile) )
break;
+ assert(PHRASE_INDEX_LIBRARY_INDEX(token) == phrase_index );
+
glong written;
utf16_t * phrase_utf16 = g_utf8_to_utf16(phrase, -1, NULL,
&written, NULL);