mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 11:51:27 +00:00
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:
parent
9167b81e4d
commit
48bbe2a1aa
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue