From 51ff7ce2b99147a1a77ed243093865fc884e571a Mon Sep 17 00:00:00 2001 From: Aaron Marcher Date: Fri, 6 Jul 2018 08:08:48 +0200 Subject: Consistent paramter naming for components --- components/num_files.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'components/num_files.c') diff --git a/components/num_files.c b/components/num_files.c index 86ea064..fb55df9 100644 --- a/components/num_files.c +++ b/components/num_files.c @@ -6,14 +6,14 @@ #include "../util.h" const char * -num_files(const char *dir) +num_files(const char *path) { struct dirent *dp; DIR *fd; int num; - if (!(fd = opendir(dir))) { - warn("opendir '%s':", dir); + if (!(fd = opendir(path))) { + warn("opendir '%s':", path); return NULL; } -- cgit v1.2.3