From: Shamus Hammons Date: Tue, 27 Sep 2016 15:46:14 +0000 (-0500) Subject: Version bump. :-) X-Git-Tag: v2.1.0~148 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=commitdiff_plain;h=603c75134d7911c5c6a7af38da1327f3e713d583;ds=sidebyside Version bump. :-) --- diff --git a/direct.c b/direct.c index dc9747b..6237ce2 100644 --- a/direct.c +++ b/direct.c @@ -371,11 +371,12 @@ int d_incbin(void) // the "-d" option. if ((fd = open(string[tok[1]], _OPEN_INC)) < 0) { - for (i = 0; nthpath("RMACPATH", i, buf1) != 0; i++) + for(i=0; nthpath("RMACPATH", i, buf1)!=0; i++) { fd = strlen(buf1); - if (fd > 0 && buf1[fd - 1] != SLASHCHAR) // Append path char if necessary + // Append path char if necessary + if (fd > 0 && buf1[fd - 1] != SLASHCHAR) strcat(buf1, SLASHSTRING); strcat(buf1, string[tok[1]]); @@ -389,7 +390,6 @@ int d_incbin(void) allright: - size = lseek(fd, 0L, SEEK_END); pos = lseek(fd, 0L, SEEK_SET); chcheck(size); diff --git a/version.h b/version.h index b8e5adf..f02916e 100644 --- a/version.h +++ b/version.h @@ -13,6 +13,6 @@ #define MAJOR 1 // Major version number #define MINOR 4 // Minor version number -#define PATCH 19 // Patch release number +#define PATCH 20 // Patch release number #endif // __VERSION_H__