aboutsummaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2024-10-08 11:54:51 +0100
committerRon Yorston <rmy@pobox.com>2024-10-08 12:09:30 +0100
commitded78ca2656fd41f130d65345b0eb4d39b1fcbdf (patch)
treeec6a2dfab77f2a49a9629d29df371a3d93256929 /win32
parent054f494916093715bc1d2d25a7a452a036d41add (diff)
parent75ca8d074bacb6896d770993b93161c40aa31b9f (diff)
downloadbusybox-w32-ded78ca2656fd41f130d65345b0eb4d39b1fcbdf.tar.gz
busybox-w32-ded78ca2656fd41f130d65345b0eb4d39b1fcbdf.tar.bz2
busybox-w32-ded78ca2656fd41f130d65345b0eb4d39b1fcbdf.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'win32')
-rw-r--r--win32/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/process.c b/win32/process.c
index e3ce95ca0..9a5ab417a 100644
--- a/win32/process.c
+++ b/win32/process.c
@@ -146,7 +146,7 @@ quote_arg(const char *arg)
146char * FAST_FUNC 146char * FAST_FUNC
147find_first_executable(const char *name) 147find_first_executable(const char *name)
148{ 148{
149 char *path = getenv("PATH"); 149 const char *path = getenv("PATH");
150 return find_executable(name, &path); 150 return find_executable(name, &path);
151} 151}
152 152