Use GPOINTER_TO_INT() macro instead of cast to allow compilation on 64-bit

2005-11-21  Davyd Madeley  <davyd@fugro-fsi.com.au>

        * src/edge-resistance.c (meta_display_compute_resistance_and_snap):
          Use GPOINTER_TO_INT() macro instead of cast to allow compilation on
          64-bit architectures without warning.
This commit is contained in:
Davyd Madeley 2005-11-21 02:58:36 +00:00 committed by Davyd Madeley
parent f9a4aea0cf
commit d1da3438d4
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-11-21 Davyd Madeley <davyd@fugro-fsi.com.au>
* src/edge-resistance.c (meta_display_compute_resistance_and_snap):
Use GPOINTER_TO_INT() macro instead of cast to allow compilation on
64-bit architectures without warning.
2005-11-19 Elijah Newren <newren@gmail.com>
* src/edge-resistance.c (apply_edge_resistance): differentiate

View File

@ -1112,7 +1112,7 @@ meta_display_compute_resistance_and_snapping_edges (MetaDisplay *display)
* stacking position than this one.
*/
while (rem_win_stacking &&
stack_position >= (int)rem_win_stacking->data)
stack_position >= GPOINTER_TO_INT (rem_win_stacking->data))
{
rem_windows = rem_windows->next;
rem_win_stacking = rem_win_stacking->next;