aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_Function.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <jberkenbilt@users.noreply.github.com>2023-05-21 18:41:01 +0200
committerGitHub <noreply@github.com>2023-05-21 18:41:01 +0200
commitbbe9f8b83c1e7d42f7e1f5b2ea613dc845a1de7c (patch)
tree89047a76039b7e98fcdd97eac0fa93081c201820 /libqpdf/Pl_Function.cc
parent2028e35928ee8725128f52cae999ac6829dee2fc (diff)
parent49e6365f63f3ad09f04093d421caee04bc042c0d (diff)
downloadqpdf-bbe9f8b83c1e7d42f7e1f5b2ea613dc845a1de7c.tar.zst
Merge pull request #969 from m-holger/tidy
Code formating : drop 'this->' in 'this->m'
Diffstat (limited to 'libqpdf/Pl_Function.cc')
-rw-r--r--libqpdf/Pl_Function.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libqpdf/Pl_Function.cc b/libqpdf/Pl_Function.cc
index 26551ac8..a18f3ef2 100644
--- a/libqpdf/Pl_Function.cc
+++ b/libqpdf/Pl_Function.cc
@@ -52,7 +52,7 @@ Pl_Function::~Pl_Function()
void
Pl_Function::write(unsigned char const* buf, size_t len)
{
- this->m->fn(buf, len);
+ m->fn(buf, len);
if (getNext(true)) {
getNext()->write(buf, len);
}