diff options
author | unknown <pem@mysql.comhem.se> | 2004-12-14 17:02:24 +0100 |
---|---|---|
committer | unknown <pem@mysql.comhem.se> | 2004-12-14 17:02:24 +0100 |
commit | 9a3de9447460e33a9f318c9b33bc96558eabe5d1 (patch) | |
tree | 1b8ce6d864266af268a7acaa95929018a50d172a /extra | |
parent | 8d45c5f9d0ed290bb0bb880488b5ff1d5c2c7619 (diff) | |
download | mariadb-git-9a3de9447460e33a9f318c9b33bc96558eabe5d1.tar.gz |
Fixed compile error in extra/comp_err.c with -debug for some compilers.
extra/comp_err.c:
Fixed compile error with -debug for some compilers.
Diffstat (limited to 'extra')
-rw-r--r-- | extra/comp_err.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/extra/comp_err.c b/extra/comp_err.c index 9bd0a1ec7a2..9ddd1d7d971 100644 --- a/extra/comp_err.c +++ b/extra/comp_err.c @@ -869,8 +869,7 @@ static int get_options(int *argc, char ***argv) static char *parse_text_line(char *pos) { int i, nr; - char *row; - row= pos; + char *row= pos; DBUG_ENTER("parse_text_line"); while (*pos) |