diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-10-14 12:01:26 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-10-14 12:01:26 +0100 |
commit | eb57cbcc296b10d8d9ea41930ab402717c800f9c (patch) | |
tree | 6f6ad7c4bfb1abcba860ee51e9bc77ffef1bfc5a /cmd-list-keys.c | |
parent | 7323ffeef22074911038444c0bfc675f56cd9726 (diff) | |
parent | b598bbcc2e8b26855e4d34dfff9c222c28080cd7 (diff) | |
download | rtmux-eb57cbcc296b10d8d9ea41930ab402717c800f9c.tar.gz rtmux-eb57cbcc296b10d8d9ea41930ab402717c800f9c.tar.bz2 rtmux-eb57cbcc296b10d8d9ea41930ab402717c800f9c.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'cmd-list-keys.c')
-rw-r--r-- | cmd-list-keys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-list-keys.c b/cmd-list-keys.c index 5113999d..8636b70a 100644 --- a/cmd-list-keys.c +++ b/cmd-list-keys.c @@ -125,7 +125,7 @@ cmd_list_keys_exec(struct cmd *self, struct cmdq_item *item) cp = utf8_padcstr(table->name, tablewidth); cplen = strlen(cp) + 1; - while (tmpused + cplen + 1>= tmpsize) { + while (tmpused + cplen + 1 >= tmpsize) { tmpsize *= 2; tmp = xrealloc(tmp, tmpsize); } |