diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2005-10-07 17:00:35 +0000 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2005-10-07 17:00:35 +0000 |
| commit | 1fad2da07f7fed1d640d57a2c7c2f666ebb409c4 (patch) | |
| tree | 2040eb9fbafe2e8fa9f9a7631b5d8e0ee55481d0 /openbox/client.c | |
| parent | 148ef741e11b89365cff0538ab3b0abff69e118d (diff) | |
more 64 bit fixes
Diffstat (limited to 'openbox/client.c')
| -rw-r--r-- | openbox/client.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openbox/client.c b/openbox/client.c index b5a66d3f..930f3ee4 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -126,7 +126,7 @@ void client_set_list() windows = NULL; PROP_SETA32(RootWindow(ob_display, ob_screen), - net_client_list, window, (guint32*)windows, size); + net_client_list, window, (gulong*)windows, size); if (windows) g_free(windows); @@ -1300,7 +1300,7 @@ void client_setup_decor_and_functions(ObClient *self) static void client_change_allowed_actions(ObClient *self) { - guint32 actions[9]; + gulong actions[9]; gint num = 0; /* desktop windows are kept on all desktops */ @@ -1715,8 +1715,8 @@ void client_update_icons(ObClient *self) static void client_change_state(ObClient *self) { - guint32 state[2]; - guint32 netstate[11]; + gulong state[2]; + gulong netstate[11]; guint num; state[0] = self->wmstate; |
