poppler/PDFDoc.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit c9ee556ab8b9bab3107a5cb3489354b3d6187a8b Author: Axel Struebing <[email protected]> Date: Sat Dec 5 22:31:29 2009 +0000 Add a empty space after null Fixes bug 25465 diff --git a/poppler/PDFDoc.cc b/poppler/PDFDoc.cc index 4af402b..b088f6c 100644 --- a/poppler/PDFDoc.cc +++ b/poppler/PDFDoc.cc @@ -20,6 +20,7 @@ // Copyright (C) 2008 Carlos Garcia Campos <[email protected]> // Copyright (C) 2009 Eric Toombs <[email protected]> // Copyright (C) 2009 Kovid Goyal <[email protected]> +// Copyright (C) 2009 Axel Struebing <[email protected]> // // To see a description of the changes please see the Changelog file that // came with your tarball or type make ChangeLog if you are building from git @@ -732,7 +733,7 @@ Guint PDFDoc::writeObject (Object* obj, Ref* ref, OutStream* outStr) break; } case objNull: - outStr->printf( "null"); + outStr->printf( "null "); break; case objArray: array = obj->getArray(); _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
