diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-07-28 16:40:09 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-08-07 16:50:35 +0200 |
commit | 1e2f9219883452ef7da37c3c984b3e3d2939656b (patch) | |
tree | d1414af1325ab9f90e37305800e3a748d90ddf9d /dw/fltkui.cc | |
parent | 0220c850a043af46385d6cd6cf4ffa9ceb5696e3 (diff) |
Fix pedantic warnings
Reviewed-by: dogma
Diffstat (limited to 'dw/fltkui.cc')
-rw-r--r-- | dw/fltkui.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dw/fltkui.cc b/dw/fltkui.cc index 712b914f..e454f85b 100644 --- a/dw/fltkui.cc +++ b/dw/fltkui.cc @@ -460,7 +460,7 @@ void FltkResource::detachView (FltkView *view) { if (this->view != view) MSG_ERR("FltkResource::detachView: this->view: %p view: %p\n", - this->view, view); + (void *) this->view, (void *) view); this->view = NULL; } |