aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/JSON.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-05-06 23:37:25 +0200
committerJay Berkenbilt <ejb@ql.org>2022-05-07 14:26:31 +0200
commita3c99803954ad0f3762d986c953666c6517cad0c (patch)
treefeb0430418207377bfce817659040f3a869f057b /libqpdf/JSON.cc
parentb361c5ce19a05ce8da60c767651521a9ce0210e5 (diff)
downloadqpdf-a3c99803954ad0f3762d986c953666c6517cad0c.tar.zst
Add next to Pl_String and fix comments
Diffstat (limited to 'libqpdf/JSON.cc')
-rw-r--r--libqpdf/JSON.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libqpdf/JSON.cc b/libqpdf/JSON.cc
index 8549b7ed..31675a42 100644
--- a/libqpdf/JSON.cc
+++ b/libqpdf/JSON.cc
@@ -200,7 +200,7 @@ std::string
JSON::unparse() const
{
std::string s;
- Pl_String p("unparse", s);
+ Pl_String p("unparse", nullptr, s);
write(&p, 0);
return s;
}