aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2020-12-22 22:53:18 +0100
committerJay Berkenbilt <ejb@ql.org>2020-12-28 18:57:59 +0100
commit1fb26f08ad91d08f67ac30e2557ddcadd8b9ccac (patch)
treedf683aaa8ef756e9a1a067ae1131e4a733ddc871 /include
parent0675a3f61a465f282eba8e1f54bdda3920257959 (diff)
downloadqpdf-1fb26f08ad91d08f67ac30e2557ddcadd8b9ccac.tar.zst
Fix typo in comment and whitespace issue
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/Constants.h2
-rw-r--r--include/qpdf/QIntC.hh2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/qpdf/Constants.h b/include/qpdf/Constants.h
index 8db53180..6f69a7a5 100644
--- a/include/qpdf/Constants.h
+++ b/include/qpdf/Constants.h
@@ -69,7 +69,7 @@ enum qpdf_stream_decode_level_e
qpdf_dl_none = 0, /* preserve all stream filters */
qpdf_dl_generalized, /* decode general-purpose filters */
qpdf_dl_specialized, /* also decode other non-lossy filters */
- qpdf_dl_all /* also decode loss filters */
+ qpdf_dl_all /* also decode lossy filters */
};
/* R3 Encryption Parameters */
diff --git a/include/qpdf/QIntC.hh b/include/qpdf/QIntC.hh
index e3ea0a28..5df26406 100644
--- a/include/qpdf/QIntC.hh
+++ b/include/qpdf/QIntC.hh
@@ -206,7 +206,7 @@ namespace QIntC // QIntC = qpdf Integer Conversion
}
template <typename T>
- unsigned long to_ulong(T const& i)
+ unsigned long to_ulong(T const& i)
{
return IntConverter<T, unsigned long >::convert(i);
}