summaryrefslogtreecommitdiffstats
path: root/libqpdf
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2012-06-23 14:59:12 +0200
committerJay Berkenbilt <ejb@ql.org>2012-06-23 15:05:06 +0200
commitbf059a60010f5c9a75c03c0fb97a15af3f01c444 (patch)
tree88a424391f2b0a912fd9832fd65e3eff4c608efc /libqpdf
parent6c0af0844c587c64079d345e67cf1de1d5606495 (diff)
downloadqpdf-bf059a60010f5c9a75c03c0fb97a15af3f01c444.tar.zst
Replace the 8-bit characters with \x.. in QPDFWriter.cc
This just makes it safer to pull up this file in an editor.
Diffstat (limited to 'libqpdf')
-rw-r--r--libqpdf/QPDFWriter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libqpdf/QPDFWriter.cc b/libqpdf/QPDFWriter.cc
index 3a08c726..71549ff4 100644
--- a/libqpdf/QPDFWriter.cc
+++ b/libqpdf/QPDFWriter.cc
@@ -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");
}