]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
cmd: Remove typo'd semicolon
authorTobin C. Harding <me@tobin.cc>
Fri, 17 Aug 2018 06:14:30 +0000 (16:14 +1000)
committerTobin C. Harding <me@tobin.cc>
Fri, 17 Aug 2018 06:14:30 +0000 (16:14 +1000)
checkpatch emits warning:

    WARNING: Statements terminations use 1 semicolon

Remove typo'd semicolon.

Signed-off-by: Tobin C. Harding <me@tobin.cc>
src/lxc/cmd/lxc_user_nic.c

index 3f34142e324451c519de1b589c313c5a9b0ce1e2..2f35d7a40c4bc0285bee870025309a10e4d74465 100644 (file)
@@ -687,7 +687,7 @@ static bool cull_entries(int fd, char *name, char *net_type, char *net_link,
 static int count_entries(char *buf, off_t len, char *name, char *net_type, char *net_link)
 {
        int count = 0;
-       bool owner = false;;
+       bool owner = false;
        char *buf_end;
 
        buf_end = &buf[len];