Skip to content

Commit b14317e

Browse files
Typo
1 parent be1d27b commit b14317e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pCloudCC/control_tools.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ int start_crypto(const char * pass) {
3131
int ret;
3232
char* errm;
3333
if (SendCall(STARTCRYPTO, pass, &ret, &errm))
34-
std::cout << "Satrt Crypto failed. return is " << ret<< " and message is "<<errm << std::endl;
34+
std::cout << "Start Crypto failed. return is " << ret<< " and message is "<<errm << std::endl;
3535
else
3636
std::cout << "Crypto started. "<< std::endl;
3737
free(errm);
@@ -81,7 +81,7 @@ int daemonize(bool do_commands) {
8181
if (pid < 0)
8282
exit(EXIT_FAILURE);
8383
if (pid > 0) {
84-
std::cout << "Daemon process crated. Process id is: " << pid << std::endl;
84+
std::cout << "Daemon process created. Process id is: " << pid << std::endl;
8585
if (do_commands) {
8686
process_commands();
8787
}

0 commit comments

Comments
 (0)