Browse Source

Cleanup. (Not caused by previous commit.)

Martijn Laan 4 months ago
parent
commit
26d9655c95
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Projects/Src/Compiler.SetupCompiler.pas

+ 2 - 2
Projects/Src/Compiler.SetupCompiler.pas

@@ -4508,9 +4508,9 @@ begin
           AbortCompileFmt(SCompilerParamConflict, [ParamISSigKeysKeyFile, ParamISSigKeysPublicX])
         else if PublicY <> '' then
           AbortCompileFmt(SCompilerParamConflict, [ParamISSigKeysKeyFile, ParamISSigKeysPublicY]);
-        var SigText := ISSigLoadTextFromFile(KeyFile);
+        var KeyText := ISSigLoadTextFromFile(KeyFile);
         var PublicKey: TECDSAPublicKey;
-        const ParseResult = ISSigParsePublicKeyText(SigText, PublicKey);
+        const ParseResult = ISSigParsePublicKeyText(KeyText, PublicKey);
         if ParseResult = ikrMalformed then
           AbortCompile(SCompilerISSigKeysBadKeyFile)
         else if ParseResult <> ikrSuccess then