From b4d6bac9a4d623a9b32188458b26ae424d374bb3 Mon Sep 17 00:00:00 2001 From: ultramage Date: Fri, 25 May 2007 15:21:53 +0000 Subject: Corrected some weird fgets() statements, plus reformatted them git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10616 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/charcommand.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/map/charcommand.c') diff --git a/src/map/charcommand.c b/src/map/charcommand.c index 7d4151b64..7f0f9b089 100644 --- a/src/map/charcommand.c +++ b/src/map/charcommand.c @@ -379,7 +379,8 @@ int charcommand_config_read(const char *cfgName) return 1; } - while (fgets(line, sizeof(line)-1, fp)) { + while (fgets(line, sizeof(line), fp)) + { if (line[0] == '/' && line[1] == '/') continue; @@ -1852,7 +1853,8 @@ int charcommand_help(const int fd, struct map_session_data* sd, const char* comm if ((fp = fopen(charhelp_txt, "r")) != NULL) { clif_displaymessage(fd, msg_txt(26)); /* Help commands: */ gm_level = pc_isGM(sd); - while(fgets(buf, sizeof(buf) - 1, fp) != NULL) { + while(fgets(buf, sizeof(buf), fp) != NULL) + { if (buf[0] == '/' && buf[1] == '/') continue; for (i = 0; buf[i] != '\0'; i++) { -- cgit v1.2.3-60-g2f50