Skip to content

Commit

Permalink
[ALSA] wavefront - Fix a compile warning
Browse files Browse the repository at this point in the history
Modules: Wavefront drivers

Fix a gcc-4.1 compile warning regarding uninitialized variables.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Takashi Iwai authored and Jaroslav Kysela committed Feb 1, 2006
1 parent 51c2bbf commit fe25ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/isa/wavefront/wavefront_synth.c
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ wavefront_send_sample (snd_wavefront_t *dev,
divided by 2.
*/

u16 sample_short;
u16 sample_short = 0;
u32 length;
u16 __user *data_end = NULL;
unsigned int i;
Expand Down

0 comments on commit fe25ad8

Please sign in to comment.