From ff713df50634fd5a2d3e5fd64fe5c57eb45b2b7a Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Thu, 25 Jan 2018 12:58:23 +0800 Subject: fixes fscanf usage --- src/storage/phrase_large_table2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/storage/phrase_large_table2.cpp') diff --git a/src/storage/phrase_large_table2.cpp b/src/storage/phrase_large_table2.cpp index 0aa6b95..38dafb3 100644 --- a/src/storage/phrase_large_table2.cpp +++ b/src/storage/phrase_large_table2.cpp @@ -472,7 +472,7 @@ bool PhraseLargeTable2::load_text(FILE * infile){ 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) -- cgit