renamed path to directoryPath in initLogger

This commit is contained in:
Václav Šmejkal 2022-11-18 18:32:28 +01:00
parent 1d27b98fbf
commit 1e52db8967
No known key found for this signature in database
GPG Key ID: FD749A97DF2D5E19
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#ifndef WHY2_LOGGER_LOGGER_H
#define WHY2_LOGGER_LOGGER_H
int initLogger(char *path);
int initLogger(char *directoryPath);
#endif

View File

@ -2,9 +2,9 @@
#include <stdio.h>
int initLogger(char *path)
int initLogger(char *directoryPath)
{
printf("PATH is: %s\n", path);
printf("PATH is: %s\n", directoryPath);
return 0;
}