mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
fixed warning in ExitThread - gcc complained that noreturn function does return
svn path=/trunk/; revision=5237
This commit is contained in:
parent
7e7e74b988
commit
2b64861966
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: thread.c,v 1.42 2003/07/10 18:50:51 chorns Exp $
|
||||
/* $Id: thread.c,v 1.43 2003/07/24 13:50:26 royce Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -312,6 +312,7 @@ ExitThread(DWORD uExitCode)
|
|||
{
|
||||
SetLastErrorByStatus(Status);
|
||||
}
|
||||
for(;;); /* GCC complains noreturn function should not return */
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue