Add missing space before ( in if( 93/97893/1
authorHyunjee Kim <hj0426.kim@samsung.com>
Tue, 15 Nov 2016 08:09:55 +0000 (17:09 +0900)
committerhyunjee Kim <hj0426.kim@samsung.com>
Tue, 15 Nov 2016 08:37:47 +0000 (00:37 -0800)
Change-Id: Iead547a8533aabbe6bbc0713f732e8500ec36548
Signed-off-by: Hyunjee Kim <hj0426.kim@samsung.com>
src/utils_i18n_alpha_idx.cpp

index d26dd7b..cf5088c 100644 (file)
@@ -78,7 +78,7 @@ int i18n_alpha_idx_get_next_bucket(i18n_alpha_idx_h index, bool *available)
 
     UErrorCode status = U_ZERO_ERROR;
 
-    if(available != NULL)
+    if (available != NULL)
         *available = ((AlphabeticIndex *) index)->nextBucket(status);
     else
         ((AlphabeticIndex *) index)->nextBucket(status);
@@ -92,7 +92,7 @@ int i18n_alpha_idx_get_next_record(i18n_alpha_idx_h index, bool *available)
 
     UErrorCode status = U_ZERO_ERROR;
 
-    if(available != NULL)
+    if (available != NULL)
         *available = ((AlphabeticIndex *) index)->nextRecord(status);
     else
         ((AlphabeticIndex *) index)->nextRecord(status);
@@ -343,7 +343,7 @@ int i18n_alpha_idx_get_record_name(i18n_alpha_idx_h index,
     *record_name = strdup(_record_name_string.c_str());
     retv_if(*record_name == NULL, I18N_ERROR_OUT_OF_MEMORY);
 
-    if(_record_name.isEmpty()) {
+    if (_record_name.isEmpty()) {
         free(*record_name);
         *record_name = NULL;
         return I18N_ERROR_INDEX_OUTOFBOUNDS;