From 6426564753a8a023085307a53476e6a5bc7fc03c Mon Sep 17 00:00:00 2001 From: Michael Widenius Date: Sat, 4 Dec 2010 12:35:41 +0200 Subject: Fixed compiler warnings but calling field->store(longlong, unsigned_flag) with proper arguments. --- storage/oqgraph/ha_oqgraph.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'storage/oqgraph') diff --git a/storage/oqgraph/ha_oqgraph.cc b/storage/oqgraph/ha_oqgraph.cc index e0c66134858..cf9ef3d8997 100644 --- a/storage/oqgraph/ha_oqgraph.cc +++ b/storage/oqgraph/ha_oqgraph.cc @@ -748,19 +748,19 @@ int ha_oqgraph::fill_record(byte *record, const open_query::row &row) if (row.latch_indicator) { field[0]->set_notnull(); - field[0]->store((longlong) row.latch); + field[0]->store((longlong) row.latch, 0); } if (row.orig_indicator) { field[1]->set_notnull(); - field[1]->store((longlong) row.orig); + field[1]->store((longlong) row.orig, 0); } if (row.dest_indicator) { field[2]->set_notnull(); - field[2]->store((longlong) row.dest); + field[2]->store((longlong) row.dest, 0); } if (row.weight_indicator) @@ -772,13 +772,13 @@ int ha_oqgraph::fill_record(byte *record, const open_query::row &row) if (row.seq_indicator) { field[4]->set_notnull(); - field[4]->store((longlong) row.seq); + field[4]->store((longlong) row.seq, 0); } if (row.link_indicator) { field[5]->set_notnull(); - field[5]->store((longlong) row.link); + field[5]->store((longlong) row.link, 0); } if (ptrdiff) -- cgit v1.2.1