diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2005-10-04 08:42:10 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-10-07 14:46:33 +0200 |
commit | 315e3bd717068624ce888f3d045a168acefc6ce8 (patch) | |
tree | 4da7b4d73f304b404e30c9357a8bdbfaab70c17f /sound | |
parent | f12aa40c9d76af5add413731d30565327219c41f (diff) |
[ALSA] korg1212: fix typo
KORG1212 driver
Add a missing comma that made the stateName array one entry too short.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/korg1212/korg1212.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/korg1212/korg1212.c b/sound/pci/korg1212/korg1212.c index 09f9cbe116a3..5561fd4091e8 100644 --- a/sound/pci/korg1212/korg1212.c +++ b/sound/pci/korg1212/korg1212.c @@ -442,7 +442,7 @@ static char* stateName[] = { "Setup for play", "Playing", "Monitor mode on", - "Calibrating" + "Calibrating", "Invalid" }; |