1
0
mirror of https://github.com/deadw00d/AROS.git synced 2026-01-12 00:09:02 +00:00

cast result of FindTask() before assigning to ln_Name

git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@6539 fb15a70f-31f2-0310-bbcc-cdcc74a49acc
This commit is contained in:
bernie
1999-11-20 14:30:30 +00:00
parent 43a81c1476
commit 0cec22b97b

View File

@ -52,7 +52,7 @@
struct Node wait; /* We cannot use the task's node here as that is
used to queue the task in Wait() */
wait.ln_Name = FindTask(NULL);
wait.ln_Name = (char *)FindTask(NULL);
SetSignal(0, SIGB_SINGLE);
Disable();