avoid shadowed `name' global variable - stagit - static git page generator | |
git clone git://git.codemadness.org/stagit | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 4f60446c011b45e862540c97b684c62fd8dc3c60 | |
parent 9467f347a2224ac95b96ef5c74d50a4e2aad5241 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Sun, 15 Nov 2020 20:58:58 +0100 | |
avoid shadowed `name' global variable | |
by Augustin Fabre <[email protected]> | |
Diffstat: | |
M stagit.c | 6 +++--- | |
1 file changed, 3 insertions(+), 3 deletions(-) | |
--- | |
diff --git a/stagit.c b/stagit.c | |
@@ -348,12 +348,12 @@ err: | |
} | |
FILE * | |
-efopen(const char *name, const char *flags) | |
+efopen(const char *filename, const char *flags) | |
{ | |
FILE *fp; | |
- if (!(fp = fopen(name, flags))) | |
- err(1, "fopen: '%s'", name); | |
+ if (!(fp = fopen(filename, flags))) | |
+ err(1, "fopen: '%s'", filename); | |
return fp; | |
} |