2
0
Эх сурвалжийг харах

0859b71c: Now it doesnt need the extra type specifier anymore.

Martijn Laan 1 сар өмнө
parent
commit
d22ddc16c8

+ 1 - 1
Components/ISSigFunc.pas

@@ -102,7 +102,7 @@ function CalcHashToSign(const AIncludeFileNameAndTag: Boolean; const AFileName:
   procedure SHA256UpdateWithString(var Context: TSHA256Context; const S: String);
   begin
     const U = UTF8String(S);
-    const N: UInt32 = UInt32(Length(U));
+    const N = UInt32(Length(U));
     SHA256Update(Context, N, SizeOf(N));
     if N > 0 then
       SHA256Update(Context, Pointer(U)^, N*SizeOf(U[1]));