[BACK]Return to names.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/names.c between version 1.35 and 1.36

version 1.35, 2016/07/15 09:27:35 version 1.36, 2016/10/10 21:29:23
Line 25 
Line 25 
   
 #include "tmux.h"  #include "tmux.h"
   
 void    name_time_callback(int, short, void *);  static void     name_time_callback(int, short, void *);
 int     name_time_expired(struct window *, struct timeval *);  static int      name_time_expired(struct window *, struct timeval *);
   
 void  static void
 name_time_callback(__unused int fd, __unused short events, void *arg)  name_time_callback(__unused int fd, __unused short events, void *arg)
 {  {
         struct window   *w = arg;          struct window   *w = arg;
Line 37 
Line 37 
         log_debug("@%u name timer expired", w->id);          log_debug("@%u name timer expired", w->id);
 }  }
   
 int  static int
 name_time_expired(struct window *w, struct timeval *tv)  name_time_expired(struct window *w, struct timeval *tv)
 {  {
         struct timeval  offset;          struct timeval  offset;

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.36