From 821279dcb7b5d069d175767edcd413b833b0cae3 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Mon, 3 Aug 2020 12:28:57 -0500 Subject: [PATCH] Version bump for last commit; now a v2.0.20.;35M;35m --- rmac.c | 8 +++++--- version.h | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/rmac.c b/rmac.c index c3da33d..f43b83b 100644 --- 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]; - 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) { - DIR* test = opendir(current_path); + DIR * test = opendir(current_path); if (test == NULL) { @@ -431,7 +432,8 @@ int Process(int argc, char ** argv) closedir(test); } } - current_path_index = i-1; + + current_path_index = i - 1; break; } case 'l': // Produce listing file diff --git a/version.h b/version.h index e67f3d5..56ecd72 100644 --- a/version.h +++ b/version.h @@ -15,7 +15,7 @@ #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__ -- 2.37.2