diff options
author | guilhem@gbichot4.local <> | 2008-02-19 18:45:11 +0100 |
---|---|---|
committer | guilhem@gbichot4.local <> | 2008-02-19 18:45:11 +0100 |
commit | 3fe6684c487e0a03d43666bff1a3813fef0562c5 (patch) | |
tree | ad9d397d605c9c610e9016051ee4cc0e7fad479e /client | |
parent | 045f3c4a5d92dc0acd43db6c5248a69cb421cfcb (diff) | |
download | mariadb-git-3fe6684c487e0a03d43666bff1a3813fef0562c5.tar.gz |
fixes for build failures due to my yesterday's changeset forbidding
bool in C.
Diffstat (limited to 'client')
-rw-r--r-- | client/get_password.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/get_password.c b/client/get_password.c index 37761d5bb5d..ea024f76fb6 100644 --- a/client/get_password.c +++ b/client/get_password.c @@ -107,7 +107,7 @@ char *get_tty_password(const char *opt_message) * to will not include the eol characters. */ -static void get_password(char *to,uint length,int fd,bool echo) +static void get_password(char *to,uint length,int fd, my_bool echo) { char *pos=to,*end=to+length; |