[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.29 and 1.30

version 1.29, 2015/11/14 09:41:06 version 1.30, 2015/11/27 15:06:43
Line 184 
Line 184 
 {  {
         struct cmd      *cmd = cmdq->cmd;          struct cmd      *cmd = cmdq->cmd;
         enum cmd_retval  retval;          enum cmd_retval  retval;
         char             tmp[1024];          char            *s;
         int              flags = !!(cmd->flags & CMD_CONTROL);          int              flags = !!(cmd->flags & CMD_CONTROL);
   
         cmd_print(cmd, tmp, sizeof tmp);          s = cmd_print(cmd);
         log_debug("cmdq %p: %s", cmdq, tmp);          log_debug("cmdq %p: %s", cmdq, s);
           free(s);
   
         cmdq->time = time(NULL);          cmdq->time = time(NULL);
         cmdq->number++;          cmdq->number++;

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30