1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

DtSetPref.C: fix some pointer<->int conversions

This commit is contained in:
Jon Trulson 2021-10-23 15:47:21 -06:00
parent d7223930d4
commit 237a3a4d94

View file

@ -273,7 +273,7 @@ void DtSetPref::Apply()
_previous_update_interval = update_interval->Value();
if (_callback)
(*_callback)(_callback_data, UPDATE_INTERVAL_CHANGED,
(char *) _previous_update_interval);
(char *) ((long)_previous_update_interval));
}
if (mainw->findD)
mainw->findD->UpdateMatchAnyUser();