mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-16 16:20:40 -08:00
Note an unused parameter; include windows.h in the new way
Copied from Perforce Change: 18837 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
edd02c3fca
commit
335be26af8
1 changed files with 5 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
/* impl.c.protw3: PROTECTION FOR WIN32
|
||||
*
|
||||
* $HopeName: MMsrc!protw3.c(MMdevel_config_thread.3) $
|
||||
* $HopeName: MMsrc!protw3.c(trunk.11) $
|
||||
* Copyright (C) 1995, 1997 Harlequin Group, all rights reserved
|
||||
*/
|
||||
|
||||
|
|
@ -13,9 +13,9 @@
|
|||
#error "protw3.c implements protection, but PROTECTION is not set"
|
||||
#endif
|
||||
|
||||
#include <windows.h>
|
||||
#include "mpswin.h"
|
||||
|
||||
SRCID(protw3, "$HopeName: MMsrc!protw3.c(MMdevel_config_thread.3) $");
|
||||
SRCID(protw3, "$HopeName: MMsrc!protw3.c(trunk.11) $");
|
||||
|
||||
|
||||
void ProtSetup(void)
|
||||
|
|
@ -102,6 +102,7 @@ LONG ProtSEHfilter(LPEXCEPTION_POINTERS info)
|
|||
|
||||
void ProtSync(Arena arena)
|
||||
{
|
||||
UNUSED(arena);
|
||||
NOOP;
|
||||
}
|
||||
|
||||
|
|
@ -109,7 +110,7 @@ void ProtSync(Arena arena)
|
|||
void ProtTramp(void **resultReturn, void *(*f)(void *, size_t),
|
||||
void *p, size_t s)
|
||||
{
|
||||
void *result;
|
||||
void *result = NULL; /* stop warnings about uninitialized result */
|
||||
|
||||
AVER(resultReturn != NULL);
|
||||
AVER(FUNCHECK(f));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue