Merge commit 'grg' into HEAD
[oweals/opkg-lede.git] / libbb / xreadlink.c
index 932e487a59d718093cb29f9d4967d8dc504772e8..5b0504cf00dc0f295a37008dbb0d6f6ef71dc6b8 100644 (file)
@@ -24,7 +24,7 @@ extern char *xreadlink(const char *path)
                buf = xrealloc(buf, bufsize += GROWBY);
                readsize = readlink(path, buf, bufsize); /* 1st try */
                if (readsize == -1) {
-                   perror_msg("%s:%s", applet_name, path);
+                   perror_msg("%s", path);
                    return NULL;
                }
        }