summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-08-14 12:40:49 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-08-14 12:40:49 -0400
commit2de09888b6be3c0d81a1a8089b9a8e87ececa0ee (patch)
tree8fdc349275df353713eecdd28125db145d8d7617 /libs/gtkmm2ext
parent8d8770f4ccd4d4d5a7731b6cd0ac28ce40ba00d0 (diff)
some const_cast<> additions for OS X where gcc believes that volatile int* means const int*
Diffstat (limited to 'libs/gtkmm2ext')
-rw-r--r--libs/gtkmm2ext/prolooks_helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gtkmm2ext/prolooks_helpers.c b/libs/gtkmm2ext/prolooks_helpers.c
index 1489a8cb3e..cdac2dbafe 100644
--- a/libs/gtkmm2ext/prolooks_helpers.c
+++ b/libs/gtkmm2ext/prolooks_helpers.c
@@ -891,7 +891,7 @@ GType prolooks_hsl_get_type (void) {
gpointer prolooks_hsl_ref (gpointer instance) {
ProlooksHSL* self;
self = instance;
- g_atomic_int_inc (&self->ref_count);
+ g_atomic_int_inc (&self->ref_count);
return instance;
}