summaryrefslogtreecommitdiff
path: root/sql/sql_show.cc
diff options
context:
space:
mode:
authormonty@narttu.mysql.fi <>2003-08-17 14:37:26 +0300
committermonty@narttu.mysql.fi <>2003-08-17 14:37:26 +0300
commitbb837f35061896c844bd919c38f473aeebc9c866 (patch)
tree3aa73b5fff5b029b8ab46ee0221bd144e352351f /sql/sql_show.cc
parent7b13560ce74611c89d8c3702c108d2eb545c518c (diff)
downloadmariadb-git-bb837f35061896c844bd919c38f473aeebc9c866.tar.gz
fixed typo in last push
Diffstat (limited to 'sql/sql_show.cc')
-rw-r--r--sql/sql_show.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_show.cc b/sql/sql_show.cc
index 489635bd85f..0321eb3cbba 100644
--- a/sql/sql_show.cc
+++ b/sql/sql_show.cc
@@ -1413,12 +1413,12 @@ int mysqld_show(THD *thd, const char *wild, show_var_st *variables,
goto err; /* purecov: inspected */
}
}
- pthread_mutex_unlock(&mutex);
+ pthread_mutex_unlock(mutex);
send_eof(&thd->net);
DBUG_RETURN(0);
err:
- pthread_mutex_unlock(&mutex);
+ pthread_mutex_unlock(mutex);
DBUG_RETURN(1);
}