diff options
-rw-r--r-- | pcoin.cpp | 6 | ||||
-rw-r--r-- | tcoin.cpp | 6 |
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])) |