Skip to content

Commit

Permalink
* Fix obsolete NULL in handers template
Browse files Browse the repository at this point in the history
  • Loading branch information
jtappin committed May 21, 2012
1 parent 6d777ef commit 9a78722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers-tmpl.f90
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ subroutine char_entered(widget, ctext, nchars, ppos, gdata) bind(c)
endif
if (dflag) decimal_present = .true.
if (eflag) exponent_present = .true.
if (opcode /= OP_NONE) call oppress(NULL, c_loc(opcode))
if (opcode /= OP_NONE) call oppress(C_NULL_PTR, c_loc(opcode))

call g_signal_stop_emission_by_name(widget, "insert-text")
else
Expand Down

0 comments on commit 9a78722

Please sign in to comment.