]> Pileus Git - ~andy/linux/commitdiff
ALSA: dice: dice_proc_read: remove wrong typecast
authorClemens Ladisch <clemens@ladisch.de>
Sun, 22 Jan 2012 15:46:23 +0000 (16:46 +0100)
committerClemens Ladisch <clemens@ladisch.de>
Sun, 20 Oct 2013 20:07:57 +0000 (22:07 +0200)
Remove a wrong typecast that resulted from a copy-and-paste error.

Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
sound/firewire/dice.c

index 25a96362e1aa7486d901a5cf4deb828afa330d53..5f0f102cf5f9f94e6b8233a7210a78f60a0d4cd7 100644 (file)
@@ -1053,8 +1053,7 @@ static void dice_proc_read(struct snd_info_entry *entry,
                        break;
                snd_iprintf(buffer, "rx %u:\n", stream);
                snd_iprintf(buffer, "  iso channel: %d\n", (int)buf.rx.iso);
-               snd_iprintf(buffer, "  sequence start: %u\n",
-                           (int)buf.rx.seq_start);
+               snd_iprintf(buffer, "  sequence start: %u\n", buf.rx.seq_start);
                snd_iprintf(buffer, "  audio channels: %u\n",
                            buf.rx.number_audio);
                snd_iprintf(buffer, "  midi ports: %u\n", buf.rx.number_midi);