mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 13:37:12 +00:00
Loads more static, except for cmd-*.c and window-*.c.
This commit is contained in:
8
names.c
8
names.c
@ -25,10 +25,10 @@
|
||||
|
||||
#include "tmux.h"
|
||||
|
||||
void name_time_callback(int, short, void *);
|
||||
int name_time_expired(struct window *, struct timeval *);
|
||||
static void name_time_callback(int, short, void *);
|
||||
static int name_time_expired(struct window *, struct timeval *);
|
||||
|
||||
void
|
||||
static void
|
||||
name_time_callback(__unused int fd, __unused short events, void *arg)
|
||||
{
|
||||
struct window *w = arg;
|
||||
@ -37,7 +37,7 @@ name_time_callback(__unused int fd, __unused short events, void *arg)
|
||||
log_debug("@%u name timer expired", w->id);
|
||||
}
|
||||
|
||||
int
|
||||
static int
|
||||
name_time_expired(struct window *w, struct timeval *tv)
|
||||
{
|
||||
struct timeval offset;
|
||||
|
Reference in New Issue
Block a user