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

Diff for /src/usr.bin/tmux/cmd.c between version 1.32 and 1.33

version 1.32, 2009/11/18 13:16:33 version 1.33, 2009/11/21 17:52:18
Line 278 
Line 278 
 size_t  size_t
 cmd_print(struct cmd *cmd, char *buf, size_t len)  cmd_print(struct cmd *cmd, char *buf, size_t len)
 {  {
         if (cmd->entry->print == NULL) {          if (cmd->entry->print == NULL)
                 return (xsnprintf(buf, len, "%s", cmd->entry->name));                  return (xsnprintf(buf, len, "%s", cmd->entry->name));
         }  
         return (cmd->entry->print(cmd, buf, len));          return (cmd->entry->print(cmd, buf, len));
 }  }
   

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33