diff options
author | Johannes Hofmann <johannes.hofmann@gmx.de> | 2005-04-07 15:03:14 +0000 |
---|---|---|
committer | Johannes Hofmann <johannes.hofmann@gmx.de> | 2005-04-07 15:03:14 +0000 |
commit | 74cb200945b6080aa0b3e8bb900d3cc58685904e (patch) | |
tree | aff9e893feffe36ecb508ef7686d2a5f84c09e24 | |
parent | 2942bf5e84a4eebf660dac3906025342a4722c18 (diff) |
fix warning on amd64 (Debian bug 303406).
fix warning on amd64 (Debian bug 303406).
-rw-r--r-- | src/flpsed.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flpsed.cxx b/src/flpsed.cxx index 4e31a57..6e4d968 100644 --- a/src/flpsed.cxx +++ b/src/flpsed.cxx @@ -1,5 +1,5 @@ // -// "$Id: flpsed.cxx,v 1.32 2005/02/28 19:53:58 hofmann Exp $" +// "$Id: flpsed.cxx,v 1.33 2005/04/07 17:03:14 hofmann Exp $" // // flpsed program. // @@ -234,7 +234,7 @@ void zoom_cb(Fl_Widget *w, void *) { } void show_tags_cb(Fl_Widget* w, void*d) { - psed_p->set_show_tags((int) d); + psed_p->set_show_tags(d==NULL?0:1); } void edit_tag_cb() { |