aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2016-09-08 11:56:25 -0700
committerChris Robinson <[email protected]>2016-09-08 11:56:25 -0700
commitb21e481827b660e7439fcebb505cdb0349517a54 (patch)
tree73c9f5801862cba1a3d4b25f5d9e1beb84afbe8c
parent958301d8801c27027eb8a0562f7a18ffae0fe26d (diff)
Only WARN if GetProcPath fails to find the binary
-rw-r--r--Alc/helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/helpers.c b/Alc/helpers.c
index 26ed535a..d4b44ced 100644
--- a/Alc/helpers.c
+++ b/Alc/helpers.c
@@ -726,7 +726,7 @@ al_string GetProcPath(void)
if(len <= 0)
{
free(pathname);
- ERR("Failed to link %s: %s\n", fname, strerror(errno));
+ WARN("Failed to readlink %s: %s\n", fname, strerror(errno));
return ret;
}