Skip to content

Commit

Permalink
cmd: Do not initialise statics to 0
Browse files Browse the repository at this point in the history
checkpatch.pl emits error

    ERROR: do not initialise statics to 0

Do not initialise statics to 0.

Signed-off-by: Tobin C. Harding <me@tobin.cc>
  • Loading branch information
tcharding committed Aug 16, 2018
1 parent 27fdb6b commit 3c84faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lxc/cmd/lxc_init.c
Expand Up @@ -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)
{
Expand Down

0 comments on commit 3c84faa

Please sign in to comment.