From 7c67f4e1bae67c590698ee5a9e80db71e7987f1e Mon Sep 17 00:00:00 2001 From: Jaehwan Kim Date: Wed, 17 Jun 2015 17:51:40 +0900 Subject: [PATCH] config: fix comment --- legacy/elementary/src/lib/elm_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/elementary/src/lib/elm_config.c b/legacy/elementary/src/lib/elm_config.c index fe6ad274d2..b4920ab1fd 100644 --- a/legacy/elementary/src/lib/elm_config.c +++ b/legacy/elementary/src/lib/elm_config.c @@ -3342,7 +3342,7 @@ _elm_config_sub_init(void) int ok = 0; len = _elm_config_user_dir_snprintf(buf, sizeof(buf), "config/"); - if (len + 6 >= sizeof(buf)) // the space to add "/flush" + if (len + 6 >= sizeof(buf)) // the space to add "flush" goto end; ok = ecore_file_mkpath(buf);