aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2014-08-03 20:21:16 -0400
committerTakashi Iwai <tiwai@suse.de>2014-08-04 07:17:23 -0400
commit04b9906d8c03307a15f2333a6a975fec1f67e891 (patch)
tree9dbcdcab4ef7c33491bcc02bda68c7eb3301a747
parentd1585c89cecdb513f68045e47ab76976524b5961 (diff)
ALSA: fireworks: fix %d confusingly prefixed with 0x in format strings
Signed-off-by: Hans Wennborg <hans@hanshq.net> Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--sound/firewire/fireworks/fireworks_proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/firewire/fireworks/fireworks_proc.c b/sound/firewire/fireworks/fireworks_proc.c
index f29d4aaf56a1..02bf394fb1b3 100644
--- a/sound/firewire/fireworks/fireworks_proc.c
+++ b/sound/firewire/fireworks/fireworks_proc.c
@@ -64,7 +64,7 @@ proc_read_hwinfo(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
64 hwinfo->phys_in_grp_count); 64 hwinfo->phys_in_grp_count);
65 for (i = 0; i < hwinfo->phys_in_grp_count; i++) { 65 for (i = 0; i < hwinfo->phys_in_grp_count; i++) {
66 snd_iprintf(buffer, 66 snd_iprintf(buffer,
67 "phys in grp[0x%d]: type 0x%d, count 0x%d\n", 67 "phys in grp[0x%d]: type 0x%d, count 0x%x\n",
68 i, hwinfo->phys_out_grps[i].type, 68 i, hwinfo->phys_out_grps[i].type,
69 hwinfo->phys_out_grps[i].count); 69 hwinfo->phys_out_grps[i].count);
70 } 70 }
@@ -73,7 +73,7 @@ proc_read_hwinfo(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
73 hwinfo->phys_out_grp_count); 73 hwinfo->phys_out_grp_count);
74 for (i = 0; i < hwinfo->phys_out_grp_count; i++) { 74 for (i = 0; i < hwinfo->phys_out_grp_count; i++) {
75 snd_iprintf(buffer, 75 snd_iprintf(buffer,
76 "phys out grps[0x%d]: type 0x%d, count 0x%d\n", 76 "phys out grps[0x%d]: type 0x%d, count 0x%x\n",
77 i, hwinfo->phys_out_grps[i].type, 77 i, hwinfo->phys_out_grps[i].type,
78 hwinfo->phys_out_grps[i].count); 78 hwinfo->phys_out_grps[i].count);
79 } 79 }