From 9f7c4563f78f74999efd94768ec483d8c24c3761 Mon Sep 17 00:00:00 2001 From: "monty@tramp.mysql.fi" <> Date: Tue, 3 Oct 2000 14:18:03 +0300 Subject: First part of automatic repair of MyISAM tables. Error on full disk on repair. SIGHUP signal handling. Update with keys on timestamp Portability fixes --- readline/tilde.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'readline/tilde.c') diff --git a/readline/tilde.c b/readline/tilde.c index d1853bd63d6..65a1e2f3902 100644 --- a/readline/tilde.c +++ b/readline/tilde.c @@ -182,7 +182,7 @@ tilde_expand (string) int result_size, result_index; result_index = result_size = 0; - if (result = strchr (string, '~')) + if ((result = strchr (string, '~'))) result = xmalloc (result_size = (strlen (string) + 16)); else result = xmalloc (result_size = (strlen (string) + 1)); -- cgit v1.2.1