treewrite: use Lindent to reformat to kernel coding style
[oweals/opkg-lede.git] / libbb / xreadlink.c
index 7d77a3bdfe6c148d0b7c13a3d5d2a0235e13249f..596a7638d1bf3aa594907493cb7f878e2ce7d0c1 100644 (file)
 
 extern char *xreadlink(const char *path)
 {
-       static const int GROWBY = 80; /* how large we will grow strings by */
+       static const int GROWBY = 80;   /* how large we will grow strings by */
 
        char *buf = NULL;
        int bufsize = 0, readsize = 0;
 
        do {
                buf = xrealloc(buf, bufsize += GROWBY);
-               readsize = readlink(path, buf, bufsize); /* 1st try */
+               readsize = readlink(path, buf, bufsize);        /* 1st try */
                if (readsize == -1) {
-                   perror_msg("%s", path);
-                   return NULL;
+                       perror_msg("%s", path);
+                       return NULL;
                }
        }
        while (bufsize < readsize + 1);
@@ -34,4 +34,3 @@ extern char *xreadlink(const char *path)
 
        return buf;
 }
-