From 1f811cb28e6ed1d0c1665943dd37025cdca1381e Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Mon, 21 May 2012 15:42:47 +0800 Subject: rename bin_file to binfile --- utils/utils_helper.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'utils/utils_helper.h') diff --git a/utils/utils_helper.h b/utils/utils_helper.h index 2f143c9..29e776a 100644 --- a/utils/utils_helper.h +++ b/utils/utils_helper.h @@ -26,14 +26,14 @@ static bool load_phrase_index(FacadePhraseIndex * phrase_index) { MemoryChunk * chunk = NULL; for (size_t i = 0; i < PHRASE_INDEX_LIBRARY_COUNT; ++i) { - const char * bin_file = pinyin_phrase_files[i]; - if (NULL == bin_file) + const char * binfile = pinyin_phrase_files[i]; + if (NULL == binfile) continue; chunk = new MemoryChunk; - bool retval = chunk->load(bin_file); + bool retval = chunk->load(binfile); if (!retval) { - fprintf(stderr, "load %s failed!\n", bin_file); + fprintf(stderr, "load %s failed!\n", binfile); return false; } @@ -45,15 +45,15 @@ static bool load_phrase_index(FacadePhraseIndex * phrase_index) { static bool save_phrase_index(FacadePhraseIndex * phrase_index) { MemoryChunk * new_chunk = NULL; for (size_t i = 0; i < PHRASE_INDEX_LIBRARY_COUNT; ++i) { - const char * bin_file = pinyin_phrase_files[i]; - if (NULL == bin_file) + const char * binfile = pinyin_phrase_files[i]; + if (NULL == binfile) continue; new_chunk = new MemoryChunk; phrase_index->store(i, new_chunk); - bool retval = new_chunk->save(bin_file); + bool retval = new_chunk->save(binfile); if (!retval) { - fprintf(stderr, "save %s failed.", bin_file); + fprintf(stderr, "save %s failed.", binfile); return false; } -- cgit