mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 15:30:14 +00:00
windows don't include assert.h (and afs support headers) in util_cr.c
Don't include afsconfig.h and afs/param.h in util_cr.c, nor assert.h. The assert was included but was in fact not used in the file, and can be ommitted, per jaltman. The OpenAFS includes are then not needed. An incorrect cast is also changed, due to jaltman. Change-Id: I3e1ad7a1d24473d6ad3ce2e401133b25b0a4c795 Reviewed-on: http://gerrit.openafs.org/2234 Reviewed-by: Jeffrey Altman <jaltman@openafs.org> Tested-by: Jeffrey Altman <jaltman@openafs.org>
This commit is contained in:
parent
5e4c33f563
commit
a4b6ac7a4a
@ -9,13 +9,9 @@
|
||||
|
||||
*/
|
||||
|
||||
#include <afsconfig.h>
|
||||
#include <afs/param.h>
|
||||
|
||||
#undef _CRTDBG_MAP_ALLOC
|
||||
#include "stdio.h"
|
||||
#include "io.h"
|
||||
#include <assert.h>
|
||||
#include "string.h"
|
||||
#include "process.h"
|
||||
#include "windows.h"
|
||||
@ -329,7 +325,7 @@ SetSysEnv(int argc, char *argv[])
|
||||
, argv[3]
|
||||
);
|
||||
SendMessageTimeout(HWND_BROADCAST, WM_SETTINGCHANGE, 0,
|
||||
(DWORD) "Environment", SMTO_NORMAL, 1, &dwResult);
|
||||
(LPARAM) "Environment", SMTO_NORMAL, 1, &dwResult);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user