From 1e52db8967584ea430757bf85f1c0bd837165abd Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Fri, 18 Nov 2022 18:32:28 +0100 Subject: [PATCH] renamed path to directoryPath in initLogger --- include/logger/logger.h | 2 +- src/logger/lib/logger.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/logger/logger.h b/include/logger/logger.h index 8050feb..e538f89 100644 --- a/include/logger/logger.h +++ b/include/logger/logger.h @@ -1,6 +1,6 @@ #ifndef WHY2_LOGGER_LOGGER_H #define WHY2_LOGGER_LOGGER_H -int initLogger(char *path); +int initLogger(char *directoryPath); #endif \ No newline at end of file diff --git a/src/logger/lib/logger.c b/src/logger/lib/logger.c index 47476a4..f6d4607 100644 --- a/src/logger/lib/logger.c +++ b/src/logger/lib/logger.c @@ -2,9 +2,9 @@ #include -int initLogger(char *path) +int initLogger(char *directoryPath) { - printf("PATH is: %s\n", path); + printf("PATH is: %s\n", directoryPath); return 0; } \ No newline at end of file