aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorJaroslav Kysela <perex@suse.cz>2005-01-03 13:30:44 +0100
committerJaroslav Kysela <perex@suse.cz>2005-01-03 13:30:44 +0100
commit906aaf3024df8ec905bfd61193c80626f9a2406c (patch)
treecec6d9f816979e83fd968e55aebea471915f7ba3 /sound
parentaf20627c8db8f0b1b45599ff0d69be30af7db576 (diff)
downloadhistory-906aaf3024df8ec905bfd61193c80626f9a2406c.tar.gz
[ALSA] Fix compile warning
Wavefront drivers Fixed compile warning regarding the sign of char. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/isa/wavefront/wavefront_synth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/isa/wavefront/wavefront_synth.c b/sound/isa/wavefront/wavefront_synth.c
index e923148dce7ba8..b17b505f200eb9 100644
--- a/sound/isa/wavefront/wavefront_synth.c
+++ b/sound/isa/wavefront/wavefront_synth.c
@@ -1922,7 +1922,7 @@ wavefront_download_firmware (snd_wavefront_t *dev, char *path)
{
unsigned char section[WF_SECTION_MAX];
- char section_length; /* yes, just a char; max value is WF_SECTION_MAX */
+ signed char section_length; /* yes, just a char; max value is WF_SECTION_MAX */
int section_cnt_downloaded = 0;
int fd;
int c;