diff options
author | Chad MILLER <chad@mysql.com> | 2009-03-09 16:56:46 -0400 |
---|---|---|
committer | Chad MILLER <chad@mysql.com> | 2009-03-09 16:56:46 -0400 |
commit | 0693a99cfdb25370c4843e2062246b7a70257f7b (patch) | |
tree | cf0c0ee69bb60cf1717aae54b5f6e23be8bfbb76 /client | |
parent | 209cc3360985657e8918707f7477813421c35924 (diff) | |
download | mariadb-git-0693a99cfdb25370c4843e2062246b7a70257f7b.tar.gz |
Fix non-DBUG return.
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqldump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c index ced34f16212..c1eb07d7f8e 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -3199,7 +3199,7 @@ static int dump_selected_tables(char *db, char **table_names, int tables) DBUG_ENTER("dump_selected_tables"); if (init_dumping(db, init_dumping_tables)) - return 1; + DBUG_RETURN(1); init_alloc_root(&root, 8192, 0); if (!(dump_tables= pos= (char**) alloc_root(&root, tables * sizeof(char *)))) |