vxlib.c (__gthread_once): Add missing value to nested return statement.
2017-06-02 Olivier Hainque <hainque@adacore.com> * config/vxlib.c (__gthread_once): Add missing value to nested return statement. From-SVN: r248838
This commit is contained in:
parent
f876304201
commit
ee834d3b93
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ __gthread_once (__gthread_once_t *guard, void (*func)(void))
|
|||
/* This can happen on powerpc, which is using all 32 bits
|
||||
of the gthread_once_t structure. */
|
||||
if (guard->done)
|
||||
return;
|
||||
return 0;
|
||||
#endif
|
||||
taskDelay (1);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue