diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-08-28 07:22:05 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-08-28 07:22:05 +0200 |
commit | cf0baf16c3a3b3dd67ea3df346479032ab10e988 (patch) | |
tree | 6033a302d915ca7d2da6bde1da49d44f621b637e /include/sound | |
parent | 36ce99c1dcab2978fc1900f19b431adedd8f99f6 (diff) |
ALSA: Fixed a typo of printk()
Fixed a silly typo of printk() included in the previous patch...
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sound/core.h b/include/sound/core.h index a89728db558..1ec992b3f1d 100644 --- a/include/sound/core.h +++ b/include/sound/core.h @@ -348,7 +348,7 @@ void __snd_printk(unsigned int level, const char *file, int line, __attribute__ ((format (printf, 4, 5))); #else #define __snd_printk(level, file, line, format, args...) \ - prinkt(format, ##args) + printk(format, ##args) #endif /** |