aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/helpers.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-12-20 06:24:33 -0800
committerChris Robinson <[email protected]>2014-12-20 06:24:55 -0800
commitaa4cf99e635c3b2547339cdb82778a8aebd7a720 (patch)
tree409d281a5ef33ea05876b2f4b144402ed1e11913 /Alc/helpers.c
parentabf0bd13caad070a614b987411f0754361ee9cfc (diff)
Fix logging on Windows
Diffstat (limited to 'Alc/helpers.c')
-rw-r--r--Alc/helpers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/helpers.c b/Alc/helpers.c
index 8811f3c3..aa8feebc 100644
--- a/Alc/helpers.c
+++ b/Alc/helpers.c
@@ -438,10 +438,10 @@ void al_print(const char *type, const char *func, const char *fmt, ...)
str[sizeof(str)-1] = 0;
wstr = FromUTF8(str);
if(!wstr)
- fputs(str, LogFile);
+ fprintf(LogFile, "AL lib: %s %s: <UTF-8 error> %s", type, func, str);
else
{
- fwprintf(LogFile, L"AL lib: %s %s: %ls", type, func, wstr);
+ fprintf(LogFile, "AL lib: %s %s: %ls", type, func, wstr);
free(wstr);
wstr = NULL;
}