aboutsummaryrefslogtreecommitdiff
path: root/include/mingw.h
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2017-08-23 11:18:19 +0100
committerRon Yorston <rmy@pobox.com>2017-08-23 11:18:19 +0100
commit47d5fa233ec73589fe8a198bcfad0a8efbe219de (patch)
treea4df297ecf99e90e951f2b80a9ce89fa091d9f92 /include/mingw.h
parent94e29a1106435c9bd92d28582fb927c365fbb915 (diff)
downloadbusybox-w32-47d5fa233ec73589fe8a198bcfad0a8efbe219de.tar.gz
busybox-w32-47d5fa233ec73589fe8a198bcfad0a8efbe219de.tar.bz2
busybox-w32-47d5fa233ec73589fe8a198bcfad0a8efbe219de.zip
find_mount_point: avoid warning about unused parameter
Diffstat (limited to 'include/mingw.h')
-rw-r--r--include/mingw.h2
1 files changed, 2 insertions, 0 deletions
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);
469#define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':') 469#define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':')
470#define is_absolute_path(path) ((path)[0] == '/' || (path)[0] == '\\' || has_dos_drive_prefix(path)) 470#define is_absolute_path(path) ((path)[0] == '/' || (path)[0] == '\\' || has_dos_drive_prefix(path))
471 471
472#define find_mount_point(n, s) find_mount_point(n)
473
472/* 474/*
473 * helpers 475 * helpers
474 */ 476 */