change this cast to an int so things will work on both 32 _and_ 64 bit processors.

now all of us with athlon-64's can restart E without losing the desktop positions of all our windows :)


SVN revision: 16607
This commit is contained in:
rephorm 2005-09-06 00:52:43 +00:00 committed by rephorm
parent b0ae6f3c72
commit 3833561118
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ ecore_x_window_prop_card32_get(Ecore_X_Window win, Ecore_X_Atom atom,
if (num_ret < len)
len = num_ret;
for (i = 0; i < len; i++)
val[i] = ((unsigned long *)prop_ret)[i];
val[i] = ((unsigned int *)prop_ret)[i];
num = len;
}
else