Fix typo in comment and whitespace issue

This commit is contained in:
Jay Berkenbilt 2020-12-22 16:53:18 -05:00
parent 0675a3f61a
commit 1fb26f08ad
2 changed files with 2 additions and 2 deletions

View File

@ -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 */

View File

@ -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);
}