[PATCH] drivers/cdrom/*: trivial vsnprintf() conversion
Fixing sbpcd.c baroque error printing in process. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Cc: Jens Axboe <axboe@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
18debbbcce
commit
5ac29e62be
@@ -101,7 +101,7 @@ static void debug(int debug_this, const char* fmt, ...)
|
||||
return;
|
||||
|
||||
va_start(args, fmt);
|
||||
vsprintf(s, fmt, args);
|
||||
vsnprintf(s, sizeof(s), fmt, args);
|
||||
printk(KERN_DEBUG "optcd: %s\n", s);
|
||||
va_end(args);
|
||||
}
|
||||
|
Reference in New Issue
Block a user