watchdog: MachZ: fix debug macro

Fix debug macro line wrapping.

Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
This commit is contained in:
Nicolas Kaiser 2010-10-09 14:19:46 +02:00 committed by Wim Van Sebroeck
parent a422088db2
commit 29c3e8c8d1
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ static unsigned long next_heartbeat;
#ifndef ZF_DEBUG
# define dprintk(format, args...)
#else
# define dprintk(format, args...) printk(KERN_DEBUG PFX
# define dprintk(format, args...) printk(KERN_DEBUG PFX \
":%s:%d: " format, __func__, __LINE__ , ## args)
#endif