summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/char_sql/Makefile2
-rw-r--r--src/common/socket.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/char_sql/Makefile b/src/char_sql/Makefile
index 1b8a742f0..a4281d1c4 100644
--- a/src/char_sql/Makefile
+++ b/src/char_sql/Makefile
@@ -25,4 +25,4 @@ int_guild.o: int_guild.c int_guild.h inter.h ../common/mmo.h char.h ../common/so
int_storage.o: int_storage.c int_storage.h char.h itemdb.h ../common/showmsg.h
int_pet.o: int_pet.c int_pet.h inter.h char.h ../common/mmo.h ../common/socket.h ../common/db.h ../common/showmsg.h
int_homun.o: int_homun.c int_homun.h inter.h char.h ../common/mmo.h ../common/socket.h ../common/db.h ../common/showmsg.h
-itemdb.o: itemdb.c itemdb.h ../common/db.h ../common/mmo.h ../common/showmsg.h \ No newline at end of file
+itemdb.o: itemdb.c itemdb.h ../common/db.h ../common/mmo.h ../common/showmsg.h
diff --git a/src/common/socket.c b/src/common/socket.c
index 6a742fce5..f8bdcdc7a 100644
--- a/src/common/socket.c
+++ b/src/common/socket.c
@@ -251,7 +251,7 @@ int connect_client(int listen_fd)
if ( fd >= FD_SETSIZE )
{ //More connections than we can handle!
- ShowError("accept failed. Received socket #%d is greater than can we handle! Increase the value of FD_SETSIZE (%d) for your OS to fix this!\n", fd, FD_SETSIZE);
+ ShowError("accept failed. Received socket #%d is greater than can we handle! Increase the value of FD_SETSIZE (currently %d) for your OS to fix this!\n", fd, FD_SETSIZE);
closesocket(fd);
return -1;
}