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:
Matt Benjamin 2010-06-23 10:26:12 -04:00 committed by Jeffrey Altman
parent 5e4c33f563
commit a4b6ac7a4a

View File

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