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:
Olivier Hainque 2017-06-02 16:24:28 +00:00
parent f876304201
commit ee834d3b93
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}