=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/names.c,v retrieving revision 1.36 retrieving revision 1.37 diff -c -r1.36 -r1.37 *** src/usr.bin/tmux/names.c 2016/10/10 21:29:23 1.36 --- src/usr.bin/tmux/names.c 2016/10/11 13:21:59 1.37 *************** *** 1,4 **** ! /* $OpenBSD: names.c,v 1.36 2016/10/10 21:29:23 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: names.c,v 1.37 2016/10/11 13:21:59 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott *************** *** 25,33 **** #include "tmux.h" ! static void name_time_callback(int, short, void *); ! static int name_time_expired(struct window *, struct timeval *); static void name_time_callback(__unused int fd, __unused short events, void *arg) { --- 25,35 ---- #include "tmux.h" ! static void name_time_callback(int, short, void *); ! static int name_time_expired(struct window *, struct timeval *); + static char *format_window_name(struct window *); + static void name_time_callback(__unused int fd, __unused short events, void *arg) { *************** *** 115,121 **** return (s); } ! char * format_window_name(struct window *w) { struct format_tree *ft; --- 117,123 ---- return (s); } ! static char * format_window_name(struct window *w) { struct format_tree *ft;