summaryrefslogtreecommitdiffstats
path: root/src/storage/pinyin_large_table.cpp
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2010-09-02 14:33:23 +0800
committerPeng Wu <alexepico@gmail.com>2010-09-02 14:38:18 +0800
commite45b28dcf7234954f47192a65049caa1c231fe83 (patch)
treec7eb80d08cd61dcf3672a50206d30d21ecdac23c /src/storage/pinyin_large_table.cpp
parent82cbc78740e1bf34514137eddba58fa16e9788ac (diff)
downloadlibpinyin-e45b28dcf7234954f47192a65049caa1c231fe83.tar.gz
libpinyin-e45b28dcf7234954f47192a65049caa1c231fe83.tar.xz
libpinyin-e45b28dcf7234954f47192a65049caa1c231fe83.zip
fixes a typo
Diffstat (limited to 'src/storage/pinyin_large_table.cpp')
-rw-r--r--src/storage/pinyin_large_table.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/storage/pinyin_large_table.cpp b/src/storage/pinyin_large_table.cpp
index a5ed998..3b1e2e3 100644
--- a/src/storage/pinyin_large_table.cpp
+++ b/src/storage/pinyin_large_table.cpp
@@ -481,17 +481,17 @@ bool PinyinLargeTable::load_text(FILE * infile){
char pinyin[256];
char phrase[256];
phrase_token_t token;
- size_t freq;
+ size_t freq;
while ( !feof(infile) ) {
fscanf(infile, "%s", pinyin);
fscanf(infile, "%s", phrase);
fscanf(infile, "%ld", &token);
- fscanf(infile, "%ld", &freq);
+ fscanf(infile, "%ld", &freq);
if ( feof(infile) )
break;
-
+
PinyinDefaultParser parser;
NullPinyinValidator validator;
PinyinKeyVector keys;