summaryrefslogtreecommitdiff
path: root/src/common/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/utils.c')
-rw-r--r--src/common/utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/utils.c b/src/common/utils.c
index 1602afa52..8b9e33fa0 100644
--- a/src/common/utils.c
+++ b/src/common/utils.c
@@ -106,7 +106,7 @@ static char* checkpath(char *path, const char *srcpath)
}
void findfile(const char *p, const char *pat, void (func)(const char*))
-{
+{
WIN32_FIND_DATAA FindFileData;
HANDLE hFind;
char tmppath[MAX_PATH+1];
@@ -167,7 +167,7 @@ static char* checkpath(char *path, const char*srcpath)
}
void findfile(const char *p, const char *pat, void (func)(const char*))
-{
+{
DIR* dir; // pointer to the scanned directory.
struct dirent* entry; // pointer to one directory entry.
struct stat dir_stat; // used by stat().