ALSA: gus: fix misuse of %x
Pointers should be printed with %p or %px rather than cast to long type and printed with %lx. Drop the address printing. Signed-off-by: Fuqian Huang <huangfq.daxian@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
607ca3bd22
commit
4ab1ae3453
|
@ -306,7 +306,7 @@ static void snd_gf1_mem_info_read(struct snd_info_entry *entry,
|
|||
used = 0;
|
||||
for (block = alloc->first, i = 0; block; block = block->next, i++) {
|
||||
used += block->size;
|
||||
snd_iprintf(buffer, "Block %i at 0x%lx onboard 0x%x size %i (0x%x):\n", i, (long) block, block->ptr, block->size, block->size);
|
||||
snd_iprintf(buffer, "Block %i onboard 0x%x size %i (0x%x):\n", i, block->ptr, block->size, block->size);
|
||||
if (block->share ||
|
||||
block->share_id[0] || block->share_id[1] ||
|
||||
block->share_id[2] || block->share_id[3])
|
||||
|
|
Loading…
Reference in New Issue