aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/helpers.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/helpers.c')
-rw-r--r--Alc/helpers.c17
1 files changed, 5 insertions, 12 deletions
diff --git a/Alc/helpers.c b/Alc/helpers.c
index 6358f044..36934ca4 100644
--- a/Alc/helpers.c
+++ b/Alc/helpers.c
@@ -449,20 +449,13 @@ void *GetSymbol(void *handle, const char *name)
void al_print(const char *type, const char *func, const char *fmt, ...)
{
- char str[256];
- int i;
+ va_list ap;
- i = snprintf(str, sizeof(str), "AL lib: %s %s: ", type, func);
- if(i > 0 && (unsigned int)i < sizeof(str))
- {
- va_list ap;
- va_start(ap, fmt);
- vsnprintf(str+i, sizeof(str)-i, fmt, ap);
- va_end(ap);
- }
- str[sizeof(str)-1] = 0;
+ va_start(ap, fmt);
+ fprintf(LogFile, "AL lib: %s %s: ", type, func);
+ vfprintf(LogFile, fmt, ap);
+ va_end(ap);
- fprintf(LogFile, "%s", str);
fflush(LogFile);
}