diff options
Diffstat (limited to 'pcoin.cpp')
-rw-r--r-- | pcoin.cpp | 6 |
1 files changed, 3 insertions, 3 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])) |