From ef68a24f9dbb9ea7d29d8c3ef483b136f49c6cb0 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 14 Jan 2020 15:56:22 -0500 Subject: use a struct to cache stat() information --- maje.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'maje.c') diff --git a/maje.c b/maje.c index 3bbc5c0..19a382c 100644 --- a/maje.c +++ b/maje.c @@ -30,7 +30,7 @@ int main(int argc, char *argv[]) srcdir = "."; } - char **sources = find_source_files(srcdir); + struct majefile **sources = find_source_files(srcdir); char *mainname = find_main(sources); if (!mainname) { printf("libraries not yet supported\n"); -- cgit v1.2.1