Skip to content

Commit

Permalink
batman-adv: Print jiffies as unsigned long
Browse files Browse the repository at this point in the history
Signed-off-by: Sven Eckelmann <sven@narfation.org>
  • Loading branch information
ecsv committed May 30, 2011
1 parent d3a547b commit f678bc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/batman-adv/bat_debugfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ int debug_log(struct bat_priv *bat_priv, char *fmt, ...)

va_start(args, fmt);
vscnprintf(tmp_log_buf, sizeof(tmp_log_buf), fmt, args);
fdebug_log(bat_priv->debug_log, "[%10u] %s",
fdebug_log(bat_priv->debug_log, "[%10lu] %s",
(jiffies / HZ), tmp_log_buf);
va_end(args);

Expand Down

0 comments on commit f678bc9

Please sign in to comment.