diff options
author | unknown <knielsen@knielsen-hq.org> | 2011-01-27 15:32:39 +0100 |
---|---|---|
committer | unknown <knielsen@knielsen-hq.org> | 2011-01-27 15:32:39 +0100 |
commit | fea75f404aa9231d441cf2e2a99539630ec9f0dc (patch) | |
tree | 39600a268e34086155bb4d8bdbb7559e8a934aad /sql/log.cc | |
parent | 2a97416e9b0ad90f99499717331e1acc03d8e097 (diff) | |
download | mariadb-git-fea75f404aa9231d441cf2e2a99539630ec9f0dc.tar.gz |
MWL#136: Fix typo (wrong type) breaking compile.
Diffstat (limited to 'sql/log.cc')
-rw-r--r-- | sql/log.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/log.cc b/sql/log.cc index fb42b42e0cb..36ddd6f2eb4 100644 --- a/sql/log.cc +++ b/sql/log.cc @@ -6591,8 +6591,8 @@ mysql_bin_log_commit_pos(THD *thd, ulonglong *out_pos, const char **out_file) } else { - *out_pos= NULL; *out_file= NULL; + *out_pos= 0; } } #endif /* INNODB_COMPATIBILITY_HOOKS */ |