diff --git a/libs/canvas/canvas/wave_view.h b/libs/canvas/canvas/wave_view.h index 55d82022af..6b18f399d4 100644 --- a/libs/canvas/canvas/wave_view.h +++ b/libs/canvas/canvas/wave_view.h @@ -56,7 +56,7 @@ struct LIBCANVAS_API WaveViewThreadRequest WaveViewThreadRequest () : stop (0) {} - bool should_stop () const { return (bool) g_atomic_int_get (&stop); } + bool should_stop () const { return (bool) g_atomic_int_get (const_cast(&stop)); } void cancel() { g_atomic_int_set (&stop, 1); } RequestType type;