Changeset 479 for GPL/trunk/lib32/task.c


Ignore:
Timestamp:
May 1, 2010, 9:49:10 PM (15 years ago)
Author:
David Azarewicz
Message:

Cleanup compiler warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk/lib32/task.c

    r305 r479  
    4646        t->next = NULL;
    4747        t->sync = 0;
    48         t->func = func;
    49         t->data = data;
     48        t->func = (void *)func; /* DAZ cast added to stop compiler warning */
     49        t->data = (void *)data; /* DAZ cast added to stop compiiler warning */
    5050}
    5151
Note: See TracChangeset for help on using the changeset viewer.