From a4b6ac7a4a51c5655d91b971e4cb7d69f7ffc2b7 Mon Sep 17 00:00:00 2001 From: Matt Benjamin Date: Wed, 23 Jun 2010 10:26:12 -0400 Subject: [PATCH] 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 Tested-by: Jeffrey Altman --- src/config/util_cr.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/config/util_cr.c b/src/config/util_cr.c index 4f918fd13f..475fc1a1af 100644 --- a/src/config/util_cr.c +++ b/src/config/util_cr.c @@ -9,13 +9,9 @@ */ -#include -#include - #undef _CRTDBG_MAP_ALLOC #include "stdio.h" #include "io.h" -#include #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; }