summaryrefslogtreecommitdiffstats
path: root/src/storage/chewing_large_table.cpp
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2018-01-25 12:58:23 +0800
committerPeng Wu <alexepico@gmail.com>2018-01-25 12:58:23 +0800
commitff713df50634fd5a2d3e5fd64fe5c57eb45b2b7a (patch)
tree08a7db240980ab6a8ad99cd523b2bfea72095dea /src/storage/chewing_large_table.cpp
parent011d3bc3f4f956eac98e98aeb284ef9b085eae19 (diff)
downloadlibpinyin-ff713df50634fd5a2d3e5fd64fe5c57eb45b2b7a.tar.gz
libpinyin-ff713df50634fd5a2d3e5fd64fe5c57eb45b2b7a.tar.xz
libpinyin-ff713df50634fd5a2d3e5fd64fe5c57eb45b2b7a.zip
fixes fscanf usage
Diffstat (limited to 'src/storage/chewing_large_table.cpp')
-rw-r--r--src/storage/chewing_large_table.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storage/chewing_large_table.cpp b/src/storage/chewing_large_table.cpp
index 8521588..5716c5c 100644
--- a/src/storage/chewing_large_table.cpp
+++ b/src/storage/chewing_large_table.cpp
@@ -669,7 +669,7 @@ bool ChewingLargeTable::load_text(FILE * infile, TABLE_PHONETIC_TYPE type) {
size_t freq;
while (!feof(infile)) {
- int num = fscanf(infile, "%256s %256s %u %ld",
+ int num = fscanf(infile, "%255s %255s %u %ld",
pinyin, phrase, &token, &freq);
if (4 != num)