From d5da94011e9fab44752b9a03f27e29d92672353b Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Mon, 13 Nov 2006 13:29:06 +0000 Subject: [PATCH] include: Fix a typo in the SecInvalidateHandle macro in sspi.h. --- include/sspi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sspi.h b/include/sspi.h index 1a4ce525e53..459de140bb1 100644 --- a/include/sspi.h +++ b/include/sspi.h @@ -54,7 +54,7 @@ typedef struct _SecHandle #define SecInvalidateHandle(x) do { \ ((PSecHandle)(x))->dwLower = ((ULONG_PTR)((INT_PTR)-1)); \ ((PSecHandle)(x))->dwUpper = ((ULONG_PTR)((INT_PTR)-1)); \ - while (0) + } while (0) #define SecIsValidHandle(x) \ ((((PSecHandle)(x))->dwLower != ((ULONG_PTR)(INT_PTR)-1)) && \