Fix some char* -> char *.
authornicm <nicm@openbsd.org>
Sat, 25 Apr 2015 18:49:01 +0000 (18:49 +0000)
committernicm <nicm@openbsd.org>
Sat, 25 Apr 2015 18:49:01 +0000 (18:49 +0000)
usr.bin/tmux/cfg.c
usr.bin/tmux/key-bindings.c
usr.bin/tmux/window.c

index 7194291..1afd2e1 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: cfg.c,v 1.35 2015/04/25 18:47:01 nicm Exp $ */
+/* $OpenBSD: cfg.c,v 1.36 2015/04/25 18:49:01 nicm Exp $ */
 
 /*
  * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
 
 #include "tmux.h"
 
-struct cmd_q           *cfg_cmd_q;
-int                     cfg_finished;
-int                     cfg_references;
-char**                  cfg_causes;
-u_int                   cfg_ncauses;
-struct client          *cfg_client;
+struct cmd_q            *cfg_cmd_q;
+int                      cfg_finished;
+int                      cfg_references;
+char                   **cfg_causes;
+u_int                    cfg_ncauses;
+struct client           *cfg_client;
 
 int
 load_cfg(const char *path, struct cmd_q *cmdq, char **cause)
@@ -114,10 +114,10 @@ cfg_default_done(unused struct cmd_q *cmdq)
 }
 
 void
-cfg_add_cause(const charfmt, ...)
+cfg_add_cause(const char *fmt, ...)
 {
-       va_list ap;
-       char*   msg;
+       va_list  ap;
+       char    *msg;
 
        va_start(ap, fmt);
        xvasprintf(&msg, fmt, ap);
index 6c980f6..0d16b9b 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: key-bindings.c,v 1.46 2015/04/21 15:34:32 nicm Exp $ */
+/* $OpenBSD: key-bindings.c,v 1.47 2015/04/25 18:49:01 nicm Exp $ */
 
 /*
  * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -144,7 +144,7 @@ key_bindings_remove_table(const char *name)
 void
 key_bindings_init(void)
 {
-       static const chardefaults[] = {
+       static const char *defaults[] = {
                "bind C-b send-prefix",
                "bind C-o rotate-window",
                "bind C-z suspend-client",
@@ -225,7 +225,7 @@ key_bindings_init(void)
        };
        u_int            i;
        struct cmd_list *cmdlist;
-       char*            cause;
+       char            *cause;
        int              error;
        struct cmd_q    *cmdq;
 
index bd2a421..d366493 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: window.c,v 1.124 2015/04/25 18:33:59 nicm Exp $ */
+/* $OpenBSD: window.c,v 1.125 2015/04/25 18:49:01 nicm Exp $ */
 
 /*
  * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -256,7 +256,7 @@ winlink_stack_remove(struct winlink_stack *stack, struct winlink *wl)
 }
 
 struct window *
-window_find_by_id_str(const chars)
+window_find_by_id_str(const char *s)
 {
        const char      *errstr;
        u_int            id;