mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-25 10:03:03 +01:00
85b9e6b82c
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
19 lines
860 B
Diff
19 lines
860 B
Diff
diff --git a/test/unit/EncryptTest.cpp b/test/unit/EncryptTest.cpp index e0b4801..3355175 100644
|
|
--- a/test/unit/EncryptTest.cpp
|
|
+++ b/test/unit/EncryptTest.cpp
|
|
@@ -326,9 +326,9 @@ void EncryptTest::testEnableAlgorithms()
|
|
|
|
PdfObject object;
|
|
object.GetDictionary().AddKey(PdfName("Filter"), PdfName("Standard"));
|
|
- object.GetDictionary().AddKey(PdfName("V"), 4L);
|
|
- object.GetDictionary().AddKey(PdfName("R"), 4L);
|
|
- object.GetDictionary().AddKey(PdfName("P"), 1L);
|
|
+ object.GetDictionary().AddKey(PdfName("V"), static_cast<pdf_int64>(4L));
|
|
+ object.GetDictionary().AddKey(PdfName("R"), static_cast<pdf_int64>(4L));
|
|
+ object.GetDictionary().AddKey(PdfName("P"), static_cast<pdf_int64>(1L));
|
|
object.GetDictionary().AddKey(PdfName("O"), PdfString(""));
|
|
object.GetDictionary().AddKey(PdfName("U"), PdfString(""));
|
|
|
|
|
|
|
|
|