From 04ec3a785c026116065dfb08f372ba1e6962d1a5 Mon Sep 17 00:00:00 2001 From: armink Date: Thu, 3 Nov 2016 09:54:34 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91?= =?UTF-8?q?=E6=97=A5=E5=BF=97=E4=B8=AD=E5=87=A0=E5=A4=84=E5=8D=95=E8=AF=8D?= =?UTF-8?q?=E6=8B=BC=E5=86=99=E9=94=99=E8=AF=AF=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: armink --- easyflash/plugins/types/ef_types.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/easyflash/plugins/types/ef_types.c b/easyflash/plugins/types/ef_types.c index 28678f9..8c516b9 100644 --- a/easyflash/plugins/types/ef_types.c +++ b/easyflash/plugins/types/ef_types.c @@ -59,7 +59,7 @@ bool ef_get_bool(const char *key) { if(value) { return atoi(value) == 0 ? false : true; } else { - EF_INFO("Couldn't found this ENV(%s)!\n", key); + EF_INFO("Couldn't find this ENV(%s)!\n", key); return false; } } @@ -81,7 +81,7 @@ long ef_get_long(const char *key) { if(value) { return atol(value); } else { - EF_INFO("Couldn't found this ENV(%s)!\n", key); + EF_INFO("Couldn't find this ENV(%s)!\n", key); return NULL; } } @@ -95,7 +95,7 @@ double ef_get_double(const char *key) { if(value) { return atof(value); } else { - EF_INFO("Couldn't found this ENV(%s)!\n", key); + EF_INFO("Couldn't find this ENV(%s)!\n", key); return NULL; } } @@ -159,7 +159,7 @@ static void ef_get_array(const char *key, void *value, ef_array_types types) { } cJSON_Delete(array); } else { - EF_INFO("Couldn't found this ENV(%s)!\n", key); + EF_INFO("Couldn't find this ENV(%s)!\n", key); } }