summaryrefslogtreecommitdiffstats
path: root/tests/lookup
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2012-02-22 14:39:19 +0800
committerPeng Wu <alexepico@gmail.com>2012-02-22 14:39:19 +0800
commit3af888752c73601c2e581610ed566175a403eaf9 (patch)
treecd50f1599a078ab49194665b0f50f3823731c3e6 /tests/lookup
parent0ed214b64542bf59948cd2423c6a31d7d1de6dde (diff)
downloadlibpinyin-3af888752c73601c2e581610ed566175a403eaf9.tar.gz
libpinyin-3af888752c73601c2e581610ed566175a403eaf9.tar.xz
libpinyin-3af888752c73601c2e581610ed566175a403eaf9.zip
update comments
Diffstat (limited to 'tests/lookup')
-rw-r--r--tests/lookup/test_phrase_lookup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lookup/test_phrase_lookup.cpp b/tests/lookup/test_phrase_lookup.cpp
index a4676f5..4d51f28 100644
--- a/tests/lookup/test_phrase_lookup.cpp
+++ b/tests/lookup/test_phrase_lookup.cpp
@@ -105,12 +105,12 @@ int main(int argc, char * argv[]){
if ( strcmp ( linebuf, "quit" ) == 0)
break;
- //check non-ucs2 characters
+ //check non-ucs4 characters
const glong num_of_chars = g_utf8_strlen(linebuf, -1);
glong len = 0;
ucs4_t * sentence = g_utf8_to_ucs4(linebuf, -1, NULL, &len, NULL);
if ( len != num_of_chars ) {
- fprintf(stderr, "non-ucs2 characters are not accepted.\n");
+ fprintf(stderr, "non-ucs4 characters are not accepted.\n");
g_free(sentence);
continue;
}