1、【修改】日志中几处单词拼写错误。

Signed-off-by: armink <armink.ztl@gmail.com>
pull/7/merge
armink 9 years ago
parent 8df09da073
commit 04ec3a785c

@ -59,7 +59,7 @@ bool ef_get_bool(const char *key) {
if(value) { if(value) {
return atoi(value) == 0 ? false : true; return atoi(value) == 0 ? false : true;
} else { } else {
EF_INFO("Couldn't found this ENV(%s)!\n", key); EF_INFO("Couldn't find this ENV(%s)!\n", key);
return false; return false;
} }
} }
@ -81,7 +81,7 @@ long ef_get_long(const char *key) {
if(value) { if(value) {
return atol(value); return atol(value);
} else { } else {
EF_INFO("Couldn't found this ENV(%s)!\n", key); EF_INFO("Couldn't find this ENV(%s)!\n", key);
return NULL; return NULL;
} }
} }
@ -95,7 +95,7 @@ double ef_get_double(const char *key) {
if(value) { if(value) {
return atof(value); return atof(value);
} else { } else {
EF_INFO("Couldn't found this ENV(%s)!\n", key); EF_INFO("Couldn't find this ENV(%s)!\n", key);
return NULL; return NULL;
} }
} }
@ -159,7 +159,7 @@ static void ef_get_array(const char *key, void *value, ef_array_types types) {
} }
cJSON_Delete(array); cJSON_Delete(array);
} else { } else {
EF_INFO("Couldn't found this ENV(%s)!\n", key); EF_INFO("Couldn't find this ENV(%s)!\n", key);
} }
} }

Loading…
Cancel
Save