diff options
-rw-r--r-- | collation.c | 2 | ||||
-rw-r--r-- | util_func.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/collation.c b/collation.c index 8a13344..e1e966b 100644 --- a/collation.c +++ b/collation.c @@ -476,7 +476,7 @@ int db_util_create_collation( ret = __db_util_dl_load_icu(); DB_UTIL_RETV_IF(ret != DB_UTIL_OK, DB_UTIL_ERROR); - const char *lang = vconf_get_str(VCONFKEY_LANGSET); + char *lang = vconf_get_str(VCONFKEY_LANGSET); /* get current locale */ if (lang) { icu_symbol.icu_uloc_setDefault(lang, &status); diff --git a/util_func.c b/util_func.c index 1911992..cd6c87c 100644 --- a/util_func.c +++ b/util_func.c @@ -21,6 +21,7 @@ #include <string.h> #include <unistd.h> +#include <time.h> #include "util-func.h" #include "collation.h" |