diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-03-25 11:53:54 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-03-25 11:53:54 +0000 |
commit | 673eb160d428b294cea1ed5ca2a2c3cb3760b00f (patch) | |
tree | ca1661e74229382edd4030080145fb422d126760 | |
parent | 4119c476aac32ca049991f06fc087d780ed882d1 (diff) | |
download | rtmux-673eb160d428b294cea1ed5ca2a2c3cb3760b00f.tar.gz rtmux-673eb160d428b294cea1ed5ca2a2c3cb3760b00f.tar.bz2 rtmux-673eb160d428b294cea1ed5ca2a2c3cb3760b00f.zip |
Sort includes and fix spaces.
-rw-r--r-- | cmd.c | 4 | ||||
-rw-r--r-- | server-client.c | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1245,8 +1245,8 @@ cmd_template_replace(const char *template, const char *s, int idx) { char ch, *buf; const char *ptr; - int replaced; - size_t len; + int replaced; + size_t len; if (strchr(template, '%') == NULL) return (xstrdup(template)); diff --git a/server-client.c b/server-client.c index 13c037d8..f61912bc 100644 --- a/server-client.c +++ b/server-client.c @@ -21,10 +21,10 @@ #include <event.h> #include <fcntl.h> -#include <string.h> -#include <time.h> #include <paths.h> #include <stdlib.h> +#include <string.h> +#include <time.h> #include <unistd.h> #include "tmux.h" |