Unverified Commit 2d4beae5 by Tobin C. Harding Committed by Christian Brauner

cmd: Do not initialise statics to 0

checkpatch.pl emits error ERROR: do not initialise statics to 0 Do not initialise statics to 0. Signed-off-by: 's avatarTobin C. Harding <me@tobin.cc>
parent d3d13097
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
lxc_log_define(lxc_init, lxc); lxc_log_define(lxc_init, lxc);
static sig_atomic_t was_interrupted = 0; static sig_atomic_t was_interrupted;
static void interrupt_handler(int sig) static void interrupt_handler(int sig)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment