diff options
author | Saturneric <[email protected]> | 2021-09-11 06:50:48 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-09-11 06:50:48 +0000 |
commit | 4d792921af4170e8574e9b2841fe54e796902833 (patch) | |
tree | 3e2fb2170ef5265dd9c67a2025dc0aaa80724af2 /src/gpg/function/GpgCommandExecutor.cpp | |
parent | Continue to optimize and improve the code. (diff) | |
download | GpgFrontend-4d792921af4170e8574e9b2841fe54e796902833.tar.gz GpgFrontend-4d792921af4170e8574e9b2841fe54e796902833.zip |
Improve and optimize the code.
Diffstat (limited to '')
-rw-r--r-- | src/gpg/function/GpgCommandExecutor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpg/function/GpgCommandExecutor.cpp b/src/gpg/function/GpgCommandExecutor.cpp index dc4750ef..b5e6ccae 100644 --- a/src/gpg/function/GpgCommandExecutor.cpp +++ b/src/gpg/function/GpgCommandExecutor.cpp @@ -51,5 +51,5 @@ void GpgFrontend::GpgCommandExecutor::Execute( ios.run(); child_process.wait(); - int result = child_process.exit_code(); + child_process.exit_code(); } |