diff options
author | 2013-03-25 11:53:54 +0000 | |
---|---|---|
committer | 2013-03-25 11:53:54 +0000 | |
commit | 306404652bebcae319c8075179116707232f09e8 (patch) | |
tree | 62acecddfa5f3aececa29751b1953e07f4894930 /usr.bin/tmux/cmd.c | |
parent | b comes before t. (diff) | |
download | wireguard-openbsd-306404652bebcae319c8075179116707232f09e8.tar.xz wireguard-openbsd-306404652bebcae319c8075179116707232f09e8.zip |
Sort includes and fix spaces.
Diffstat (limited to 'usr.bin/tmux/cmd.c')
-rw-r--r-- | usr.bin/tmux/cmd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/cmd.c b/usr.bin/tmux/cmd.c index 56fe8893801..b92b61a771c 100644 --- a/usr.bin/tmux/cmd.c +++ b/usr.bin/tmux/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.83 2013/03/25 10:11:45 nicm Exp $ */ +/* $OpenBSD: cmd.c,v 1.84 2013/03/25 11:53:54 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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)); |