Skip to content

Commit

Permalink
ALSA: Fixed a typo of printk()
Browse files Browse the repository at this point in the history
Fixed a silly typo of printk() included in the previous patch...

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Takashi Iwai committed Aug 28, 2009
1 parent 36ce99c commit cf0baf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sound/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

/**
Expand Down

0 comments on commit cf0baf1

Please sign in to comment.