aboutsummaryrefslogtreecommitdiff
path: root/debianutils/which.c
diff options
context:
space:
mode:
Diffstat (limited to 'debianutils/which.c')
-rw-r--r--debianutils/which.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debianutils/which.c b/debianutils/which.c
index fe6cf2f78..ace5b82dd 100644
--- a/debianutils/which.c
+++ b/debianutils/which.c
@@ -51,7 +51,7 @@ int which_main(int argc UNUSED_PARAM, char **argv)
51 puts(*argv); 51 puts(*argv);
52 } 52 }
53#if ENABLE_PLATFORM_MINGW32 53#if ENABLE_PLATFORM_MINGW32
54 else if ((p=win32_execable_file(*argv)) != NULL) { 54 else if ((p=file_is_win32_executable(*argv)) != NULL) {
55 missing = 0; 55 missing = 0;
56 puts(p); 56 puts(p);
57 free(p); 57 free(p);