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

Diff for /src/usr.bin/tmux/cmd-save-buffer.c between version 1.14 and 1.15

version 1.14, 2012/05/21 18:27:42 version 1.15, 2012/07/10 11:53:01
Line 20 
Line 20 
 #include <sys/stat.h>  #include <sys/stat.h>
   
 #include <errno.h>  #include <errno.h>
   #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
 #include "tmux.h"  #include "tmux.h"
Line 62 
Line 63 
                 buffer = args_strtonum(args, 'b', 0, INT_MAX, &cause);                  buffer = args_strtonum(args, 'b', 0, INT_MAX, &cause);
                 if (cause != NULL) {                  if (cause != NULL) {
                         ctx->error(ctx, "buffer %s", cause);                          ctx->error(ctx, "buffer %s", cause);
                         xfree(cause);                          free(cause);
                         return (-1);                          return (-1);
                 }                  }
   

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15