aboutsummaryrefslogtreecommitdiff
path: root/src/aiff.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-03-06 22:06:08 +0100
committerMax Kellermann <max@duempel.org>2012-03-06 22:06:08 +0100
commit5016839b90274017696e0942f424d4f361d39ea2 (patch)
treee106c4f95f413b6b8252ff867586460cc63931c6 /src/aiff.c
parentfaf35e6082a8c685140820f334b5c4ecc9ce6666 (diff)
use g_strerror() instead of strerror()
Make sure we get a UTF-8 encoded string.
Diffstat (limited to 'src/aiff.c')
-rw-r--r--src/aiff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aiff.c b/src/aiff.c
index 35b716ee..06de9ffe 100644
--- a/src/aiff.c
+++ b/src/aiff.c
@@ -57,7 +57,7 @@ aiff_seek_id3(FILE *file)
ret = fstat(fileno(file), &st);
if (ret < 0) {
g_warning("Failed to stat file descriptor: %s",
- strerror(errno));
+ g_strerror(errno));
return 0;
}