aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-09-24 14:52:54 -0700
committerChris Robinson <[email protected]>2011-09-24 14:52:54 -0700
commit12abd75aed83555c0a7b34273a8823662507a3d0 (patch)
tree147ce3310c407656ab78772cf93c78f896b0e2cd /Alc
parent044774ed72d829b86ee115b2c10ba98d50749ed5 (diff)
Only warn when a symbol fails to load
Diffstat (limited to 'Alc')
-rw-r--r--Alc/helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/helpers.c b/Alc/helpers.c
index b4f5dcda..980c0071 100644
--- a/Alc/helpers.c
+++ b/Alc/helpers.c
@@ -207,7 +207,7 @@ void *GetSymbol(void *handle, const char *name)
sym = dlsym(handle, name);
if((err=dlerror()) != NULL)
{
- ERR("Failed to load %s: %s\n", name, err);
+ WARN("Failed to load %s: %s\n", name, err);
sym = NULL;
}
return sym;