mirror of
https://github.com/tmux/tmux.git
synced 2025-04-04 15:25:29 +00:00
Sprinkle some const.
This commit is contained in:
parent
ef91aac688
commit
7ccdbf392d
4
input.c
4
input.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: input.c,v 1.17 2007-10-03 00:13:46 nicm Exp $ */
|
/* $Id: input.c,v 1.18 2007-10-03 09:16:59 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
#include "tmux.h"
|
#include "tmux.h"
|
||||||
|
|
||||||
struct {
|
const struct {
|
||||||
u_char first;
|
u_char first;
|
||||||
u_char last;
|
u_char last;
|
||||||
enum input_class class;
|
enum input_class class;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: server-msg.c,v 1.14 2007-10-02 17:45:05 nicm Exp $ */
|
/* $Id: server-msg.c,v 1.15 2007-10-03 09:17:00 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -45,7 +45,7 @@ struct server_msg {
|
|||||||
|
|
||||||
int (*fn)(struct hdr *, struct client *);
|
int (*fn)(struct hdr *, struct client *);
|
||||||
};
|
};
|
||||||
struct server_msg server_msg_table[] = {
|
const struct server_msg server_msg_table[] = {
|
||||||
{ MSG_ATTACH, server_msg_fn_attach },
|
{ MSG_ATTACH, server_msg_fn_attach },
|
||||||
{ MSG_CREATE, server_msg_fn_create },
|
{ MSG_CREATE, server_msg_fn_create },
|
||||||
{ MSG_INPUT, server_msg_fn_input },
|
{ MSG_INPUT, server_msg_fn_input },
|
||||||
@ -68,7 +68,7 @@ int
|
|||||||
server_msg_dispatch(struct client *c)
|
server_msg_dispatch(struct client *c)
|
||||||
{
|
{
|
||||||
struct hdr hdr;
|
struct hdr hdr;
|
||||||
struct server_msg *msg;
|
const struct server_msg *msg;
|
||||||
u_int i;
|
u_int i;
|
||||||
int n;
|
int n;
|
||||||
|
|
||||||
|
6
tmux.c
6
tmux.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: tmux.c,v 1.19 2007-10-02 17:35:00 nicm Exp $ */
|
/* $Id: tmux.c,v 1.20 2007-10-03 09:17:00 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -44,7 +44,7 @@ struct op {
|
|||||||
const char *alias;
|
const char *alias;
|
||||||
int (*fn)(char *, int, char **);
|
int (*fn)(char *, int, char **);
|
||||||
};
|
};
|
||||||
struct op op_table[] = {
|
const struct op op_table[] = {
|
||||||
{ "attach", NULL, op_attach },
|
{ "attach", NULL, op_attach },
|
||||||
{ "list-sessions", "ls", op_list_sessions },
|
{ "list-sessions", "ls", op_list_sessions },
|
||||||
{ "list-windows", "lsw", op_list_windows },
|
{ "list-windows", "lsw", op_list_windows },
|
||||||
@ -158,7 +158,7 @@ sigreset(void)
|
|||||||
int
|
int
|
||||||
main(int argc, char **argv)
|
main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
struct op *op, *found;
|
const struct op *op, *found;
|
||||||
char *path;
|
char *path;
|
||||||
int opt;
|
int opt;
|
||||||
u_int i;
|
u_int i;
|
||||||
|
Loading…
Reference in New Issue
Block a user