Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/fceux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjnahmias <joe@nahmias.net>2021-02-01 07:57:24 +0300
committerGitHub <noreply@github.com>2021-02-01 07:57:24 +0300
commit6f45846975b0c1fdbeb285e42500ce9da4123475 (patch)
tree5ed9ae12e25eff070edb3714fe2ab02b513784e6 /fceux-server
parent215f64eab388414ea136b9a776b24efa927d4100 (diff)
fix spelling mistakes caught by lintian (#314)
Diffstat (limited to 'fceux-server')
-rw-r--r--fceux-server/server.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/fceux-server/server.cpp b/fceux-server/server.cpp
index 486056a0..e28531f7 100644
--- a/fceux-server/server.cpp
+++ b/fceux-server/server.cpp
@@ -753,7 +753,7 @@ int main(int argc, char *argv[])
i++;
if(argc == i)
{
- printf("Please specify the maximium ammount of clients.\n");
+ printf("Please specify the maximium amount of clients.\n");
return -1;
}
ServerConfig.MaxClients = atoi(argv[i]);
@@ -764,7 +764,7 @@ int main(int argc, char *argv[])
i++;
if(argc == i)
{
- printf("Please specify the conenction timeout time in seconds.\n");
+ printf("Please specify the connection timeout time in seconds.\n");
return -1;
}
ServerConfig.ConnectTimeout = atoi(argv[i]);