Commit 3c84faa3 by Tobin C. Harding

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 27fdb6be
......@@ -54,7 +54,7 @@
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)
{
......
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