[BACK]Return to term_ps.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/term_ps.c between version 1.41 and 1.42

version 1.41, 2010/08/06 16:07:35 version 1.42, 2010/08/20 01:02:07
Line 29 
Line 29 
 #include <time.h>  #include <time.h>
 #include <unistd.h>  #include <unistd.h>
   
   #include "mandoc.h"
 #include "out.h"  #include "out.h"
 #include "main.h"  #include "main.h"
 #include "term.h"  #include "term.h"
Line 371  ps_growbuf(struct termp *p, size_t sz)
Line 372  ps_growbuf(struct termp *p, size_t sz)
   
         if (NULL == p->engine.ps.psmarg) {          if (NULL == p->engine.ps.psmarg) {
                 perror(NULL);                  perror(NULL);
                 exit(EXIT_FAILURE);                  exit(MANDOCLEVEL_SYSERR);
         }          }
 }  }
   
Line 608  pdf_obj(struct termp *p, size_t obj)
Line 609  pdf_obj(struct termp *p, size_t obj)
                          p->engine.ps.pdfobjsz * sizeof(size_t));                           p->engine.ps.pdfobjsz * sizeof(size_t));
                 if (NULL == p->engine.ps.pdfobjs) {                  if (NULL == p->engine.ps.pdfobjs) {
                         perror(NULL);                          perror(NULL);
                         exit(EXIT_FAILURE);                          exit(MANDOCLEVEL_SYSERR);
                 }                  }
         }          }
   

Legend:
Removed from v.1.41  
changed lines
  Added in v.1.42

CVSweb