summaryrefslogtreecommitdiffstats
path: root/term-utils/wall.c
diff options
context:
space:
mode:
authorSami Kerola2017-05-28 11:37:06 +0200
committerKarel Zak2017-06-14 12:21:29 +0200
commitf4d37838673f022c8c05c4beb5057bdb683a76ca (patch)
tree78e5ba60ddf290613d81a0d48312f0e45fa548d9 /term-utils/wall.c
parentlosetup: add missing initializer [clang] (diff)
downloadkernel-qcow2-util-linux-f4d37838673f022c8c05c4beb5057bdb683a76ca.tar.gz
kernel-qcow2-util-linux-f4d37838673f022c8c05c4beb5057bdb683a76ca.tar.xz
kernel-qcow2-util-linux-f4d37838673f022c8c05c4beb5057bdb683a76ca.zip
misc: remove stray semicolons
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'term-utils/wall.c')
-rw-r--r--term-utils/wall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/term-utils/wall.c b/term-utils/wall.c
index 44f9d5879..db85062a7 100644
--- a/term-utils/wall.c
+++ b/term-utils/wall.c
@@ -309,7 +309,7 @@ static void buf_printf(struct buffer *bs, const char *fmt, ...)
buf_enlarge(bs, (size_t)rc + 1);
limit = bs->sz - bs->used;
va_start(ap, fmt);
- rc = vsnprintf(bs->data + bs->used, limit, fmt, ap);;
+ rc = vsnprintf(bs->data + bs->used, limit, fmt, ap);
va_end(ap);
}