diff options
author | Michael Widenius <monty@askmonty.org> | 2010-12-13 15:27:13 +0200 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2010-12-13 15:27:13 +0200 |
commit | 0b20943e9d7e22332ccc14b30b49a78a780cc23d (patch) | |
tree | 866472d85a317666a174e3749fea2fca0afde50d /mysys | |
parent | bd2034dbee16bc90217d44df5059d837d60a6110 (diff) | |
download | mariadb-git-0b20943e9d7e22332ccc14b30b49a78a780cc23d.tar.gz |
Fixed typo that caused compile failure in thr_lock.c
mysys/thr_lock.c:
Fixed typo that caused compile failure
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/thr_lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/thr_lock.c b/mysys/thr_lock.c index 60214c9af08..68a3caf6da7 100644 --- a/mysys/thr_lock.c +++ b/mysys/thr_lock.c @@ -163,7 +163,7 @@ static int check_lock(struct st_lock_list *list, const char* lock_type, if (list->data) { enum thr_lock_type last_lock_type= list->data->type; - THR_LOCK_OWNER first_owner= list->data->owner; + THR_LOCK_OWNER *first_owner= list->data->owner; for (data=list->data; data && count++ < MAX_LOCKS ; data=data->next) { |