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

Diff for /src/usr.bin/less/prompt.c between version 1.17 and 1.18

version 1.17, 2015/11/09 16:46:43 version 1.18, 2016/01/12 17:48:04
Line 128 
Line 128 
  * Append a line number to the end of the message.   * Append a line number to the end of the message.
  */   */
 static void  static void
 ap_linenum(LINENUM linenum)  ap_linenum(off_t linenum)
 {  {
         char buf[INT_STRLEN_BOUND(linenum) + 2];          char buf[INT_STRLEN_BOUND(linenum) + 2];
   
Line 234 
Line 234 
         off_t pos;          off_t pos;
         off_t len;          off_t len;
         int n;          int n;
         LINENUM linenum;          off_t linenum;
         LINENUM last_linenum;          off_t last_linenum;
         IFILE h;          IFILE h;
   
 #undef  PAGE_NUM  #undef  PAGE_NUM

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18