Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 04b9906d authored by Hans Wennborg's avatar Hans Wennborg Committed by Takashi Iwai
Browse files

ALSA: fireworks: fix %d confusingly prefixed with 0x in format strings



Signed-off-by: default avatarHans Wennborg <hans@hanshq.net>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent d1585c89
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -64,7 +64,7 @@ proc_read_hwinfo(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
		    hwinfo->phys_in_grp_count);
		    hwinfo->phys_in_grp_count);
	for (i = 0; i < hwinfo->phys_in_grp_count; i++) {
	for (i = 0; i < hwinfo->phys_in_grp_count; i++) {
		snd_iprintf(buffer,
		snd_iprintf(buffer,
			    "phys in grp[0x%d]: type 0x%d, count 0x%d\n",
			    "phys in grp[0x%d]: type 0x%d, count 0x%x\n",
			    i, hwinfo->phys_out_grps[i].type,
			    i, hwinfo->phys_out_grps[i].type,
			    hwinfo->phys_out_grps[i].count);
			    hwinfo->phys_out_grps[i].count);
	}
	}
@@ -73,7 +73,7 @@ proc_read_hwinfo(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
		    hwinfo->phys_out_grp_count);
		    hwinfo->phys_out_grp_count);
	for (i = 0; i < hwinfo->phys_out_grp_count; i++) {
	for (i = 0; i < hwinfo->phys_out_grp_count; i++) {
		snd_iprintf(buffer,
		snd_iprintf(buffer,
			    "phys out grps[0x%d]: type 0x%d, count 0x%d\n",
			    "phys out grps[0x%d]: type 0x%d, count 0x%x\n",
			    i, hwinfo->phys_out_grps[i].type,
			    i, hwinfo->phys_out_grps[i].type,
			    hwinfo->phys_out_grps[i].count);
			    hwinfo->phys_out_grps[i].count);
	}
	}