diff options
Diffstat (limited to 'src/aiff.c')
-rw-r--r-- | src/aiff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/aiff.c b/src/aiff.c index e2ca0dfe4..06de9ffe7 100644 --- a/src/aiff.c +++ b/src/aiff.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2010 The Music Player Daemon Project + * Copyright (C) 2003-2011 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -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; } |