]> Shamusworld >> Repos - rmac/commitdiff
Version bump. :-)
authorShamus Hammons <jlhamm@acm.org>
Tue, 27 Sep 2016 15:46:14 +0000 (10:46 -0500)
committerShamus Hammons <jlhamm@acm.org>
Tue, 27 Sep 2016 15:46:14 +0000 (10:46 -0500)
direct.c
version.h

index dc9747ba9174fd05d3bf61d3a21955aa00ab5fc2..6237ce2e418d715c464cedab0813ff6a1842b7c0 100644 (file)
--- 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)
        {
        // 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);
 
                {
                        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]]);
                                strcat(buf1, SLASHSTRING);
 
                        strcat(buf1, string[tok[1]]);
@@ -389,7 +390,6 @@ int d_incbin(void)
 
 allright:
 
 
 allright:
 
-
        size = lseek(fd, 0L, SEEK_END);
        pos = lseek(fd, 0L, SEEK_SET);
        chcheck(size);
        size = lseek(fd, 0L, SEEK_END);
        pos = lseek(fd, 0L, SEEK_SET);
        chcheck(size);
index b8e5adf00289dc1d192f333f62c87807765cabbf..f02916e7a3e8629c56c0a7f2ae2ba095ed6c6f2d 100644 (file)
--- a/version.h
+++ b/version.h
@@ -13,6 +13,6 @@
 
 #define MAJOR   1              // Major version number
 #define MINOR   4              // Minor version number
 
 #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__
 
 #endif // __VERSION_H__