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

Commit c85a4004 authored by Thadeu Lima de Souza Cascardo's avatar Thadeu Lima de Souza Cascardo Committed by Takashi Iwai
Browse files

ALSA: trivial: sound seq ioctl dbg: print hexadecimal value padded with 0s



Instead of padding with blanks and printing "number=0x a", print
"number=0x0a".

Signed-off-by: default avatarThadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 30ede1b9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2190,7 +2190,7 @@ static int snd_seq_do_ioctl(struct snd_seq_client *client, unsigned int cmd,
		if (p->cmd == cmd)
			return p->func(client, arg);
	}
	snd_printd("seq unknown ioctl() 0x%x (type='%c', number=0x%2x)\n",
	snd_printd("seq unknown ioctl() 0x%x (type='%c', number=0x%02x)\n",
		   cmd, _IOC_TYPE(cmd), _IOC_NR(cmd));
	return -ENOTTY;
}