Vodz, last_patch_114
[oweals/busybox.git] / libbb / xreadlink.c
index 9944b5129409f673b15ecb90372e3ceda6fa6364..b8cfe617a960f92d142cdd8f4f755df72d4885ff 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", path);
+                   bb_perror_msg("%s", path);
                    return NULL;
                }
        }