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

Diff for /src/usr.bin/tmux/cmd-queue.c between version 1.69 and 1.70

version 1.69, 2019/05/23 13:08:43 version 1.70, 2019/05/25 10:44:09
Line 32 
Line 32 
 static const char *  static const char *
 cmdq_name(struct client *c)  cmdq_name(struct client *c)
 {  {
         static char     s[32];          static char     s[256];
   
         if (c == NULL)          if (c == NULL)
                 return ("<global>");                  return ("<global>");
         xsnprintf(s, sizeof s, "<%p>", c);          xsnprintf(s, sizeof s, "<%s>", c->name);
         return (s);          return (s);
 }  }
   

Legend:
Removed from v.1.69  
changed lines
  Added in v.1.70