mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- Fixed typo in SetUnhandledExceptionFilter
svn path=/trunk/; revision=5827
This commit is contained in:
parent
becf23850d
commit
9cb40ad0da
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: except.c,v 1.11 2003/07/10 18:50:51 chorns Exp $
|
/* $Id: except.c,v 1.12 2003/08/24 14:49:55 dwelch Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS system libraries
|
* PROJECT: ReactOS system libraries
|
||||||
|
@ -54,7 +54,7 @@ SetUnhandledExceptionFilter(
|
||||||
{
|
{
|
||||||
LPTOP_LEVEL_EXCEPTION_FILTER OldTopLevelExceptionFilter =
|
LPTOP_LEVEL_EXCEPTION_FILTER OldTopLevelExceptionFilter =
|
||||||
GlobalTopLevelExceptionFilter;
|
GlobalTopLevelExceptionFilter;
|
||||||
lpTopLevelExceptionFilter = GlobalTopLevelExceptionFilter;
|
GlobalTopLevelExceptionFilter = lpTopLevelExceptionFilter;
|
||||||
return OldTopLevelExceptionFilter;
|
return OldTopLevelExceptionFilter;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue