From 2a6196cf26a48d59a389c00787e4ed12ae8fbef9 Mon Sep 17 00:00:00 2001 From: Steven Smith Date: Tue, 24 Feb 2015 20:08:33 -0800 Subject: [PATCH] Add space to error messages. --- source/main.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/main.cpp b/source/main.cpp index 0d7cbe2..28388c3 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -3,7 +3,6 @@ #include #include #include -#include typedef enum { INSTALL, @@ -108,7 +107,7 @@ int main(int argc, char **argv) { resultMsg << "succeeded!"; } else { resultMsg << "failed!" << "\n"; - resultMsg << app_get_result_string(ret); + resultMsg << app_get_result_string(ret) << "\n"; } ui_prompt(TOP_SCREEN, resultMsg.str(), false); @@ -147,7 +146,7 @@ int main(int argc, char **argv) { resultMsg << "succeeded!"; } else { resultMsg << "failed!" << "\n"; - resultMsg << app_get_result_string(ret); + resultMsg << app_get_result_string(ret) << "\n"; } ui_prompt(TOP_SCREEN, resultMsg.str(), false);