summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openbox/prop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/prop.c b/openbox/prop.c
index fe21bc44..d843e69d 100644
--- a/openbox/prop.c
+++ b/openbox/prop.c
@@ -206,7 +206,7 @@ static gboolean get_prealloc(Window win, Atom prop, Atom type, gint size,
data[i] = xdata[i];
break;
case 16:
- ((gushort*)data)[i] = ((gushort*)xdata)[i];
+ ((guint16*)data)[i] = ((gushort*)xdata)[i];
break;
case 32:
((guint32*)data)[i] = ((gulong*)xdata)[i];
@@ -245,7 +245,7 @@ static gboolean get_all(Window win, Atom prop, Atom type, gint size,
(*data)[i] = xdata[i];
break;
case 16:
- ((gushort*)*data)[i] = ((gushort*)xdata)[i];
+ ((guint16*)*data)[i] = ((gushort*)xdata)[i];
break;
case 32:
((guint32*)*data)[i] = ((gulong*)xdata)[i];