[Xfce4-commits] r26631 - xfdesktop/branches/xfce_4_4/src
Brian Tarricone
kelnos at xfce.org
Thu Feb 21 20:46:57 CET 2008
Author: kelnos
Date: 2008-02-21 19:46:57 +0000 (Thu, 21 Feb 2008)
New Revision: 26631
Modified:
xfdesktop/branches/xfce_4_4/src/xfdesktop-icon-view.c
Log:
fix silly warnings on amd64
Modified: xfdesktop/branches/xfce_4_4/src/xfdesktop-icon-view.c
===================================================================
--- xfdesktop/branches/xfce_4_4/src/xfdesktop-icon-view.c 2008-02-19 19:58:53 UTC (rev 26630)
+++ xfdesktop/branches/xfce_4_4/src/xfdesktop-icon-view.c 2008-02-21 19:46:57 UTC (rev 26631)
@@ -1202,7 +1202,7 @@
if(target == GDK_NONE)
return FALSE;
}
- DBG("target=%d (%s)", (gint)target, gdk_atom_name(target));
+ DBG("target=%ld (%s)", (glong)target, gdk_atom_name(target));
xfdesktop_xy_to_rowcol(icon_view, x, y, &row, &col);
icon_on_dest = xfdesktop_icon_view_icon_in_cell(icon_view, row, col);
@@ -1698,7 +1698,7 @@
} else
icon_view->priv->grid_layout = g_malloc0(new_size);
- DBG("created grid_layout with %d positions", new_size/sizeof(gpointer));
+ DBG("created grid_layout with %ld positions", new_size/sizeof(gpointer));
DUMP_GRID_LAYOUT(icon_view);
xfdesktop_icon_view_setup_grids_xinerama(icon_view);
More information about the Xfce4-commits
mailing list