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/tool/grfio.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/tool/grfio.c') diff --git a/src/tool/grfio.c b/src/tool/grfio.c index 2961dc0ec..b9c03cbc5 100644 --- a/src/tool/grfio.c +++ b/src/tool/grfio.c @@ -703,7 +703,8 @@ static void grfio_resourcecheck(void) fp = fopen(restable, "rb"); if (fp) { - while (fgets(line, sizeof(line) - 1, fp)) { + while(fgets(line, sizeof(line), fp)) + { if (sscanf(line, "%[^#]#%[^#]#", w1, w2) == 2 && // we only need the maps' GAT and RSW files (strstr(w2, ".gat") || strstr(w2, ".rsw"))) @@ -806,7 +807,8 @@ void grfio_init(char* fname) data_conf = fopen(fname, "r"); // It will read, if there is grf-files.txt. if (data_conf) { - while(fgets(line, sizeof(line) - 1, data_conf)) { + while(fgets(line, sizeof(line), data_conf)) + { if (line[0] == '/' && line[1] == '/') continue; if (sscanf(line, "%[^:]: %[^\r\n]", w1, w2) != 2) -- cgit v1.2.3-70-g09d2