blob: 4c2441b2744c44a69d9109c5f90df43c3b5e0f65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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(""));
|