1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

changed return value to boolean

This commit is contained in:
bell@51.0.168.192.in-addr.arpa
2005-02-22 14:46:21 +02:00
parent 04cffe4dfb
commit a867465e88

View File

@@ -912,7 +912,7 @@ static my_bool rm_dir_w_symlink(const char *org_path, my_bool send_error)
if (rmdir(path) < 0 && send_error)
{
my_error(ER_DB_DROP_RMDIR, MYF(0), path, errno);
DBUG_RETURN(-1);
DBUG_RETURN(1);
}
DBUG_RETURN(0);
}