diff options
author | Alexandre Raymond <cerbere@gmail.com> | 2011-05-27 13:22:28 -0400 |
---|---|---|
committer | Andreas Färber <andreas.faerber@web.de> | 2011-06-14 03:08:56 +0200 |
commit | d9cbb0f3ed0e3a185a61a18de856d51cf7789bf5 (patch) | |
tree | 7350bcc89418e16a754e7fbee353832c0e319eb9 /audio | |
parent | e4ebcc1a37a7e66205f477a7d2805fb5d0ce3d3b (diff) |
Fix compilation warning due to incorrectly specified type
In audio/coreaudio.c, a variable named "str" was assigned "const char" values,
which resulted in the following warnings:
-----8<-----
audio/coreaudio.c: In function ‘coreaudio_logstatus’:
audio/coreaudio.c:59: warning: initialization discards qualifiers from pointer target type
audio/coreaudio.c:63: warning: assignment discards qualifiers from pointer target type
(...)
-----8<-----
Signed-off-by: Alexandre Raymond <cerbere@gmail.com>
Acked-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/coreaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/coreaudio.c b/audio/coreaudio.c index 0a26413d7..3bd75cdda 100644 --- a/audio/coreaudio.c +++ b/audio/coreaudio.c @@ -56,7 +56,7 @@ typedef struct coreaudioVoiceOut { static void coreaudio_logstatus (OSStatus status) { - char *str = "BUG"; + const char *str = "BUG"; switch(status) { case kAudioHardwareNoError: |