Removed compiler warning about signed/unsigned comparision.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@16939 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2003-06-17 13:31:33 +00:00
parent 9167b81e4d
commit 48bbe2a1aa

View file

@ -152,7 +152,7 @@ xdnd_is_dnd_aware(DndClass *dnd, Window window, int *version, Atom *typelist)
result = 0;
for (t = typelist; *t; t++)
{
int j;
unsigned long j;
for (j = 1; j < count; j++)
{
if (types[j] == *t)
@ -369,8 +369,8 @@ void
xdnd_get_type_list(DndClass * dnd, Window window, Atom ** typelist)
{
Atom type, *a;
int format, i;
unsigned long count, remaining;
int format;
unsigned long i, count, remaining;
unsigned char *data = NULL;
*typelist = 0;