Browse Source

MWL#136: Fix typo (wrong type) breaking compile.

pull/374/head
unknown 15 years ago
parent
commit
fea75f404a
  1. 2
      sql/log.cc

2
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 */

Loading…
Cancel
Save