diff options
author | Chris Robinson <[email protected]> | 2016-09-08 11:56:25 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-09-08 11:56:25 -0700 |
commit | b21e481827b660e7439fcebb505cdb0349517a54 (patch) | |
tree | 73c9f5801862cba1a3d4b25f5d9e1beb84afbe8c | |
parent | 958301d8801c27027eb8a0562f7a18ffae0fe26d (diff) |
Only WARN if GetProcPath fails to find the binary
-rw-r--r-- | Alc/helpers.c | 2 |
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; } |