Преглед на файлове

Cleanup. (Not caused by previous commit.)

Martijn Laan преди 4 месеца
родител
ревизия
26d9655c95
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  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