diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-11-08 08:39:34 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-11-08 08:39:34 +0000 |
commit | f9b1981bd7df7370d5eddd3adb50bc52f47514d4 (patch) | |
tree | 7d7566475423b3f51134e7d45a82cfc36bff1dab /src/homedir.c | |
parent | 451d34ce212cb0b93aa97eb85f89fcd6e682bbb9 (diff) | |
download | curl-f9b1981bd7df7370d5eddd3adb50bc52f47514d4.tar.gz |
use char, not bool
Diffstat (limited to 'src/homedir.c')
-rw-r--r-- | src/homedir.c | 2 |
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 |