diff options
author | Charlie Gordon <github@chqrlie.org> | 2024-02-10 16:18:11 +0100 |
---|---|---|
committer | Charlie Gordon <github@chqrlie.org> | 2024-02-10 16:19:17 +0100 |
commit | 37bd4ae62db064984a5956ab534920dfa21e3c5d (patch) | |
tree | 3bfd1df7e0e68e53771fab0fca9e17a1ef7b8156 /cutils.c | |
parent | 6f480abbc8b2abe91fcc0fa58aa07c367e1dcb36 (diff) | |
download | quickjs-37bd4ae62db064984a5956ab534920dfa21e3c5d.tar.gz quickjs-37bd4ae62db064984a5956ab534920dfa21e3c5d.zip |
Strip trailing spaces
Diffstat (limited to 'cutils.c')
-rw-r--r-- | cutils.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ /* * C utilities - * + * * Copyright (c) 2017 Fabrice Bellard * Copyright (c) 2018 Charlie Gordon * @@ -172,7 +172,7 @@ int __attribute__((format(printf, 2, 3))) dbuf_printf(DynBuf *s, va_list ap; char buf[128]; int len; - + va_start(ap, fmt); len = vsnprintf(buf, sizeof(buf), fmt, ap); va_end(ap); |