Commit 75e1ed96 authored by Timothy Smith's avatar Timothy Smith

Add another cast to ignore int/ulong difference in error types, silence warning on Win64

parent 06adec7a
......@@ -3687,7 +3687,7 @@ ha_innobase::write_row(
/* We don't want to mask autoinc overflow errors. */
if (prebuilt->autoinc_error != DB_SUCCESS) {
error = prebuilt->autoinc_error;
error = (int) prebuilt->autoinc_error;
goto report_error;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment