Reformat, remove a few redundant type casts
[yaz-moved-to-github.git] / src / icu_utf16.c
index c5970ef..a5bfcb6 100644 (file)
@@ -61,7 +61,7 @@ struct icu_buf_utf16 * icu_buf_utf16_resize(struct icu_buf_utf16 * buf16,
     if (!buf16)
         return 0;
     
     if (!buf16)
         return 0;
     
-    if (capacity >  0)
+    if (capacity > 0)
     {
         if (0 == buf16->utf16)
             buf16->utf16 = (UChar *) xmalloc(sizeof(UChar) * capacity);
     {
         if (0 == buf16->utf16)
             buf16->utf16 = (UChar *) xmalloc(sizeof(UChar) * capacity);
@@ -79,7 +79,6 @@ struct icu_buf_utf16 * icu_buf_utf16_resize(struct icu_buf_utf16 * buf16,
         buf16->utf16_len = 0;
         buf16->utf16_cap = 0;
     }
         buf16->utf16_len = 0;
         buf16->utf16_cap = 0;
     }
-
     return buf16;
 }
 
     return buf16;
 }