diff options
author | nicm <nicm> | 2019-05-12 18:16:33 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-05-12 18:16:33 +0000 |
commit | 00f19b7f9160f32b3736da08116e5ea4f2409bb1 (patch) | |
tree | f025c269067ac4f75725c5ac7bcf2a418a653540 /style.c | |
parent | a13165523598fa7670ebc95f3cfb5c892d08745a (diff) | |
download | rtmux-00f19b7f9160f32b3736da08116e5ea4f2409bb1.tar.gz rtmux-00f19b7f9160f32b3736da08116e5ea4f2409bb1.tar.bz2 rtmux-00f19b7f9160f32b3736da08116e5ea4f2409bb1.zip |
Fix some indentation and dead assignments.
Diffstat (limited to 'style.c')
-rw-r--r-- | style.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -57,10 +57,8 @@ style_parse(struct style *sy, const struct grid_cell *base, const char *in) style_copy(&saved, sy); do { - while (*in != '\0' && strchr(delimiters, *in) != NULL) { + while (*in != '\0' && strchr(delimiters, *in) != NULL) in++; - end--; - } if (*in == '\0') break; |