aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-11-08 08:39:34 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-11-08 08:39:34 +0000
commitf9b1981bd7df7370d5eddd3adb50bc52f47514d4 (patch)
tree7d7566475423b3f51134e7d45a82cfc36bff1dab /src
parent451d34ce212cb0b93aa97eb85f89fcd6e682bbb9 (diff)
use char, not bool
Diffstat (limited to 'src')
-rw-r--r--src/homedir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/homedir.c b/src/homedir.c
index 507dd58f1..f9062e8b4 100644
--- a/src/homedir.c
+++ b/src/homedir.c
@@ -45,7 +45,7 @@
#endif
static
-char *GetEnv(const char *variable, bool do_expand)
+char *GetEnv(const char *variable, char do_expand)
{
char *env = NULL;
#ifdef WIN32