2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-28 04:59:05 +00:00

Replace the 8-bit characters with \x.. in QPDFWriter.cc

This just makes it safer to pull up this file in an editor.
This commit is contained in:
Jay Berkenbilt 2012-06-23 08:59:12 -04:00
parent 6c0af0844c
commit bf059a6001

View File

@ -1764,7 +1764,7 @@ QPDFWriter::writeHeader()
writeString(version);
// This string of binary characters would not be valid UTF-8, so
// it really should be treated as binary.
writeString("\n%¿÷¢þ\n");
writeString("\n%\xbf\xf7\xa2\xfe\n");
writeStringQDF("%QDF-1.0\n\n");
}