diff options
author | jcid <devnull@localhost> | 2008-04-26 23:51:54 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-04-26 23:51:54 +0200 |
commit | f3463f272a99dbf71e1ad199f686bb94c6b291be (patch) | |
tree | 65e1a167f80d84159e7d39face71d65ed941fd19 /src/dialog.cc | |
parent | 1092738e153bd8ddb3dae331bcff30a53305ddc4 (diff) |
- Solved some 64bit issues.
Diffstat (limited to 'src/dialog.cc')
-rw-r--r-- | src/dialog.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialog.cc b/src/dialog.cc index ae3a4418..6b2c584f 100644 --- a/src/dialog.cc +++ b/src/dialog.cc @@ -246,7 +246,7 @@ static int choice5_answer; void choice5_cb(Widget *button, void *number) { - choice5_answer = (int)number; + choice5_answer = VOIDP2INT(number); _MSG("choice5_cb: %d\n", choice5_answer); button->window()->make_exec_return(true); } |