]> Shamusworld >> Repos - rmac/commitdiff
Version bump for last commit; now a v2.0.20.;35M;35m
authorShamus Hammons <jlhamm@acm.org>
Mon, 3 Aug 2020 17:28:57 +0000 (12:28 -0500)
committerShamus Hammons <jlhamm@acm.org>
Mon, 3 Aug 2020 17:28:57 +0000 (12:28 -0500)
rmac.c
version.h

diff --git a/rmac.c b/rmac.c
index c3da33dc734364f7516a3f819f8ea46a6f883a21..f43b83b8e6e2fb1047803e5d79c593aa035e9cd0 100644 (file)
--- a/rmac.c
+++ b/rmac.c
@@ -415,11 +415,12 @@ int Process(int argc, char ** argv)
 
                                // Check to see if include paths actually exist
                                char current_path[256];
 
                                // Check to see if include paths actually exist
                                char current_path[256];
-                               for (i = current_path_index; nthpath("RMACPATH", i, current_path) != 0; i++)
+
+                               for(i=current_path_index; nthpath("RMACPATH", i, current_path)!=0; i++)
                                {
                                        if (strlen(current_path) > 0)
                                        {
                                {
                                        if (strlen(current_path) > 0)
                                        {
-                                               DIR* test = opendir(current_path);
+                                               DIR * test = opendir(current_path);
 
                                                if (test == NULL)
                                                {
 
                                                if (test == NULL)
                                                {
@@ -431,7 +432,8 @@ int Process(int argc, char ** argv)
                                                closedir(test);
                                        }
                                }
                                                closedir(test);
                                        }
                                }
-                               current_path_index = i-1;
+
+                               current_path_index = i - 1;
                                break;
                        }
                        case 'l':                               // Produce listing file
                                break;
                        }
                        case 'l':                               // Produce listing file
index e67f3d502eb0f5141eceb1607644ea7edc80f3f3..56ecd722f7d55b4daf9a09d268b80fec07536523 100644 (file)
--- a/version.h
+++ b/version.h
@@ -15,7 +15,7 @@
 
 #define MAJOR   2              // Major version number
 #define MINOR   0              // Minor version number
 
 #define MAJOR   2              // Major version number
 #define MINOR   0              // Minor version number
-#define PATCH   19             // Patch release number
+#define PATCH   20             // Patch release number
 
 #endif // __VERSION_H__
 
 
 #endif // __VERSION_H__