about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorlogin (envs.net) <login@envs.net>2020-02-22 05:08:44 +0000
committerlogin (envs.net) <login@envs.net>2020-02-22 05:08:44 +0000
commit27b63d30449cafe4707d70eca9ec54978a9499ea (patch)
treeb0f56d43667cfbf841c2f8393053946dc2ceec7f
parentf4e29c07930ba87ee5f266860623b56ece0bf470 (diff)
downloadtcoin-27b63d30449cafe4707d70eca9ec54978a9499ea.tar.gz
Nobody's perfect: .n\n -> .\n\n in tcoin.cpp and pcoin.cpp
And I don't know how to clean my commits after having pushed
them to remote origin/master. Maybe a Git stash and hard reset?
-rw-r--r--pcoin.cpp6
-rw-r--r--tcoin.cpp6
2 files changed, 6 insertions, 6 deletions
diff --git a/pcoin.cpp b/pcoin.cpp
index e1c2d5d..d421c76 100644
--- a/pcoin.cpp
+++ b/pcoin.cpp
@@ -1876,7 +1876,7 @@ int main(int argc, char *argv[])
         return_value = message_is_long(argv[4]);
         if(return_value) //message is too long
         {
-          std::cout << "\nSorry, the message was longer than " << TCOIN_MSG_LENGTH_LIMIT << " characters. Please keep messages at or below this limit.n\n";
+          std::cout << "\nSorry, the message was longer than " << TCOIN_MSG_LENGTH_LIMIT << " characters. Please keep messages at or below this limit.\n\n";
           return ERR_MAIN_MSG_TOO_LONG;
         }
         if(is_number(argv[3]))
@@ -1901,7 +1901,7 @@ int main(int argc, char *argv[])
         return_value = message_is_long(argv[5]);
         if(return_value) //message is too long
         {
-          std::cout << "\nSorry, the message was longer than " << TCOIN_MSG_LENGTH_LIMIT << " characters. Please keep messages at or below this limit.n\n";
+          std::cout << "\nSorry, the message was longer than " << TCOIN_MSG_LENGTH_LIMIT << " characters. Please keep messages at or below this limit.\n\n";
           return ERR_MAIN_MSG_TOO_LONG;
         }
         if(is_number(argv[3]))
@@ -1964,7 +1964,7 @@ int main(int argc, char *argv[])
       return_value = message_is_long(argv[4]);
       if(return_value) //message is too long
       {
-        std::cout << "\nSorry, the message was longer than " << TCOIN_MSG_LENGTH_LIMIT << " characters. Please keep messages at or below this limit.n\n";
+        std::cout << "\nSorry, the message was longer than " << TCOIN_MSG_LENGTH_LIMIT << " characters. Please keep messages at or below this limit.\n\n";
         return ERR_MAIN_MSG_TOO_LONG;
       }
       if(is_number(argv[2]))
diff --git a/tcoin.cpp b/tcoin.cpp
index 90bedec..c9bd4b4 100644
--- a/tcoin.cpp
+++ b/tcoin.cpp
@@ -1723,7 +1723,7 @@ int main(int argc, char *argv[])
         return_value = message_is_long(argv[4]);
         if(return_value) //message is too long
         {
-          std::cout << "\nSorry, the message was longer than " << TCOIN_MSG_LENGTH_LIMIT << " characters. Please keep messages at or below this limit.n\n";
+          std::cout << "\nSorry, the message was longer than " << TCOIN_MSG_LENGTH_LIMIT << " characters. Please keep messages at or below this limit.\n\n";
           return ERR_MAIN_MSG_TOO_LONG;
         }
         if(is_number(argv[2]))
@@ -1747,7 +1747,7 @@ int main(int argc, char *argv[])
         return_value = message_is_long(argv[5]);
         if(return_value) //message is too long
         {
-          std::cout << "\nSorry, the message was longer than " << TCOIN_MSG_LENGTH_LIMIT << " characters. Please keep messages at or below this limit.n\n";
+          std::cout << "\nSorry, the message was longer than " << TCOIN_MSG_LENGTH_LIMIT << " characters. Please keep messages at or below this limit.\n\n";
           return ERR_MAIN_MSG_TOO_LONG;
         }
         if(is_number(argv[3]))
@@ -1812,7 +1812,7 @@ int main(int argc, char *argv[])
       return_value = message_is_long(argv[4]);
       if(return_value) //message is too long
       {
-        std::cout << "\nSorry, the message was longer than " << TCOIN_MSG_LENGTH_LIMIT << " characters. Please keep messages at or below this limit.n\n";
+        std::cout << "\nSorry, the message was longer than " << TCOIN_MSG_LENGTH_LIMIT << " characters. Please keep messages at or below this limit.\n\n";
         return ERR_MAIN_MSG_TOO_LONG;
       }
       if(is_number(argv[2]))