Skip to content

Commit

Permalink
improved i586-mingw32msvc-gcc compatility and added explicit comment …
Browse files Browse the repository at this point in the history
…about it
  • Loading branch information
Peter Szabo committed Aug 6, 2012
1 parent bade658 commit 2611cad
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pdfconcat.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@
* -- cannot verify and/or ensure copyright of PDF documents
* -- emits various error messages, but it isn't a PDF validator
* -- /Linearized property is destroyed
*
* System requirements:
*
* -- Compiles and works on any Unix system and on MinGW32 (also when
* cross-compiled on Linux with i586-mingw32msvc-gcc).
*/

/*
Expand Down Expand Up @@ -1093,7 +1098,7 @@ static void wr_enqueue_catalog(void) {
pdfint_t a, b;
if ('1'==gettok() && (a=ibuf_int, TRUE)
&& '1'==gettok() && (b=ibuf_int, TRUE) && 'R'==gettok()
) {} else { r_seek(lastofs); erri("/Pages of /Catalog must be indirect", 0); }
) {} else { r_seek(lastofs); erri("/Pages of /Catalog must be indirect", 0); return; }
r_seek(lastofs);
e=objentry(a,b);
wr_enqueue_struct(FALSE);
Expand Down

0 comments on commit 2611cad

Please sign in to comment.