Indent.
authorSimon Josefsson <simon@josefsson.org>
Fri, 3 Mar 2006 13:36:06 +0000 (13:36 +0000)
committerSimon Josefsson <simon@josefsson.org>
Fri, 3 Mar 2006 13:36:06 +0000 (13:36 +0000)
lib/iconvme.c

index a925402b153249094561e6230b772148c07394cd..943380c03554bc90322eb9dd46a608df4e59e57c 100644 (file)
@@ -73,7 +73,7 @@ iconv_string (const char *str, const char *from_codeset,
   if (cd == (iconv_t) -1)
     return NULL;
 
-  dest = iconv_alloc(cd, str);
+  dest = iconv_alloc (cd, str);
 
   {
     int save_errno = errno;
@@ -185,7 +185,7 @@ out:
   if (have_error && dest)
     {
       int save_errno = errno;
-      free(dest);
+      free (dest);
       errno = save_errno;
       dest = NULL;
     }