Revision: 7445
Author: nogu.dev
Date: Sat Feb 11 02:11:04 2012
Log: * uim/uim-posix.c
- (c_get_config_path): Remove unused variable "exist".
http://code.google.com/p/uim/source/detail?r=7445
Modified:
/trunk/uim/uim-posix.c
=======================================
--- /trunk/uim/uim-posix.c Wed Jan 11 00:17:24 2012
+++ /trunk/uim/uim-posix.c Sat Feb 11 02:11:04 2012
@@ -234,10 +234,9 @@
{
char path[MAXPATHLEN];
int need_prepare = UIM_FALSE;
- int exist;
/* No need to check the existence of path in this function */
- exist = uim_get_config_path_internal(path, sizeof(path),
C_BOOL(is_getenv_), need_prepare);
+ uim_get_config_path_internal(path, sizeof(path), C_BOOL(is_getenv_),
need_prepare);
return MAKE_STR(path);
}