diff options
author | Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | 2010-02-01 16:17:01 -0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-02-02 00:27:47 +0100 |
commit | c85a400499093b2025238413198e48e4d825723e (patch) | |
tree | aba24f82f80ddb23d36e3db4e7b835dd2d3f0b3f /sound/core | |
parent | 30ede1b9f08204db178bf17bb1800dfee8327caa (diff) | |
download | linux-3.10-c85a400499093b2025238413198e48e4d825723e.tar.gz linux-3.10-c85a400499093b2025238413198e48e4d825723e.tar.bz2 linux-3.10-c85a400499093b2025238413198e48e4d825723e.zip |
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: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core')
-rw-r--r-- | sound/core/seq/seq_clientmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/seq/seq_clientmgr.c b/sound/core/seq/seq_clientmgr.c index 8ca2be339f3..48eca9ff9ee 100644 --- a/sound/core/seq/seq_clientmgr.c +++ b/sound/core/seq/seq_clientmgr.c @@ -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; } |