Commit 1fb26f08ad91d08f67ac30e2557ddcadd8b9ccac

Authored by Jay Berkenbilt
1 parent 0675a3f6

Fix typo in comment and whitespace issue

include/qpdf/Constants.h
... ... @@ -69,7 +69,7 @@ enum qpdf_stream_decode_level_e
69 69 qpdf_dl_none = 0, /* preserve all stream filters */
70 70 qpdf_dl_generalized, /* decode general-purpose filters */
71 71 qpdf_dl_specialized, /* also decode other non-lossy filters */
72   - qpdf_dl_all /* also decode loss filters */
  72 + qpdf_dl_all /* also decode lossy filters */
73 73 };
74 74  
75 75 /* R3 Encryption Parameters */
... ...
include/qpdf/QIntC.hh
... ... @@ -206,7 +206,7 @@ namespace QIntC // QIntC = qpdf Integer Conversion
206 206 }
207 207  
208 208 template <typename T>
209   - unsigned long to_ulong(T const& i)
  209 + unsigned long to_ulong(T const& i)
210 210 {
211 211 return IntConverter<T, unsigned long >::convert(i);
212 212 }
... ...