From 47d5fa233ec73589fe8a198bcfad0a8efbe219de Mon Sep 17 00:00:00 2001 From: Ron Yorston Date: Wed, 23 Aug 2017 11:18:19 +0100 Subject: find_mount_point: avoid warning about unused parameter --- include/mingw.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/mingw.h b/include/mingw.h index 260469b95..08d36cb49 100644 --- a/include/mingw.h +++ b/include/mingw.h @@ -469,6 +469,8 @@ const char * next_path_sep(const char *path); #define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':') #define is_absolute_path(path) ((path)[0] == '/' || (path)[0] == '\\' || has_dos_drive_prefix(path)) +#define find_mount_point(n, s) find_mount_point(n) + /* * helpers */ -- cgit v1.2.3-55-g6feb