diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-27 08:51:07 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-27 08:51:18 +0100 |
| commit | 73f1b29070cd14f709030963deae2289209110e8 (patch) | |
| tree | cc047edd41635c5b5b7e8c4abb06b8f1939e485a | |
| parent | 1bc278e892691ad8f42d1d18b748cf7b72ed3088 (diff) | |
(JSONManifestBuilder) FIX: Add space when logging exit code.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
| -rw-r--r-- | src/JSONManifestBuilder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/JSONManifestBuilder.cc b/src/JSONManifestBuilder.cc index ea0f46d..0c1df65 100644 --- a/src/JSONManifestBuilder.cc +++ b/src/JSONManifestBuilder.cc @@ -99,7 +99,7 @@ bool JSONManifestBuilder::buildTarget(int arg_sz, const char* arg_val, const boo if (ret_exec > 0) { - std::cout << "btb: error: exec exit with code:" << ret_exec << "." << std::endl; + std::cout << "btb: error: exec exit with code: " << ret_exec << "." << std::endl; return false; } |
