Skip to content

Commit

Permalink
Eliminate compile warning: t+
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrey Kegler authored and Jeffrey Kegler committed Jul 30, 2012
1 parent 3c70e8e commit d5addd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r2/libmarpa/dev/marpa.w
Expand Up @@ -9315,12 +9315,12 @@ of the base EIM.
for (start = 0; bv_scan (r->t_bv_pim_symbols, start, &min, &max); start = max + 2) {
ISYID isyid;
for (isyid = (ISYID)min; isyid <= (ISYID) max; isyid++) {
PIM this_pim = r->t_pim_workarea[isyid];
if (lbv_bit_test(r->t_isy_expected_is_event, isyid)) {
ISY isy = ISY_by_ID(isyid);
XSY xsy = Source_XSY_of_ISY(isy);
int_event_new (g, MARPA_EVENT_SYMBOL_EXPECTED, ID_of_XSY(xsy));
}
PIM this_pim = r->t_pim_workarea[isyid];
if (this_pim) postdot_array[postdot_array_ix++] = this_pim;
}
}
Expand Down

0 comments on commit d5addd4

Please sign in to comment.