also revert long -> int change in xcb

SVN revision: 65083
This commit is contained in:
Carsten Haitzler 2011-11-12 01:40:51 +00:00
parent d45aa0e846
commit 778d3ff2d7
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ ecore_x_window_prop_card32_list_get(Ecore_X_Window win,
}
data = xcb_get_property_value(reply);
for (i = 0; i < num; i++)
val[i] = ((unsigned int *)data)[i];
val[i] = ((unsigned long *)data)[i];
*list = val;
}
}