Remove trailing whitespace. Sorry if this breaks your patches.
[oweals/opkg-lede.git] / libbb / xreadlink.c
index 5b0504cf00dc0f295a37008dbb0d6f6ef71dc6b8..7d77a3bdfe6c148d0b7c13a3d5d2a0235e13249f 100644 (file)
 #include "libbb.h"
 
 extern char *xreadlink(const char *path)
-{                       
+{
        static const int GROWBY = 80; /* how large we will grow strings by */
 
-       char *buf = NULL;   
+       char *buf = NULL;
        int bufsize = 0, readsize = 0;
 
        do {
@@ -27,11 +27,11 @@ extern char *xreadlink(const char *path)
                    perror_msg("%s", path);
                    return NULL;
                }
-       }           
+       }
        while (bufsize < readsize + 1);
 
        buf[readsize] = '\0';
 
        return buf;
-}       
+}