mirror of
https://github.com/adulau/aha.git
synced 2024-12-29 04:06:22 +00:00
[ALSA] pcxhr - Fix a compiler warning on 64bit architectures
The patch fixes a conpile warning on 64bit architectures, caused by different sizes of size_t . Since size_t is unsigned I permited myself to cange the format, too. Signed-off-by: Henrik Kretzschmar <henne@nachtwindheim.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
c6cc0e3b0c
commit
711ee39bf3
1 changed files with 2 additions and 2 deletions
|
@ -385,8 +385,8 @@ static int pcxhr_hwdep_dsp_load(struct snd_hwdep *hw,
|
||||||
fw.size = dsp->length;
|
fw.size = dsp->length;
|
||||||
fw.data = vmalloc(fw.size);
|
fw.data = vmalloc(fw.size);
|
||||||
if (! fw.data) {
|
if (! fw.data) {
|
||||||
snd_printk(KERN_ERR "pcxhr: cannot allocate dsp image (%d bytes)\n",
|
snd_printk(KERN_ERR "pcxhr: cannot allocate dsp image (%lu bytes)\n",
|
||||||
fw.size);
|
(unsigned long)fw.size);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
if (copy_from_user(fw.data, dsp->image, dsp->length)) {
|
if (copy_from_user(fw.data, dsp->image, dsp->length)) {
|
||||||
|
|
Loading…
Reference in a new issue