Commit e5cb895e authored by Geoff Simmons's avatar Geoff Simmons

fix some compiler errors that are reported with -O3

parent 93b3d109
......@@ -444,7 +444,7 @@ DATA_Dump(void)
continue;
}
if (rec_node->rec != NULL) {
data_dump_rec(i, j, -1, rec, data);
data_dump_rec(i, j, -1, rec_node->rec, data);
continue;
}
if (rec_node->hdrs == NULL)
......
......@@ -267,7 +267,7 @@ static inline tx_t
return (tx);
}
static inline void
static void
take_free(void)
{
rdr_tx_free += DATA_Take_Freetx(&rdr_tx_freelist);
......@@ -898,6 +898,8 @@ main(int argc, char *argv[])
/* Main loop */
term = 0;
last_t = VTIM_mono();
status = DISPATCH_CONTINUE;
while (!term) {
status = VSLQ_Dispatch(vslq, event, NULL);
switch(status) {
......
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