From 41539da87930b0a9472b945b8b7b3656e6cffff0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sun, 22 Sep 2013 19:30:00 +0000 Subject: [PATCH] Add extra-parenthesing. svn path=/trunk/; revision=60321 --- rostests/apitests/include/apitest.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rostests/apitests/include/apitest.h b/rostests/apitests/include/apitest.h index 44badd56513..da2430e929e 100644 --- a/rostests/apitests/include/apitest.h +++ b/rostests/apitests/include/apitest.h @@ -27,9 +27,9 @@ ExceptionStatus = _SEH2_GetExceptionCode(); \ } \ _SEH2_END; \ - ok(ExceptionStatus == ExpectedStatus, \ + ok(ExceptionStatus == (ExpectedStatus), \ "Exception 0x%08lx, expected 0x%08lx\n", \ - ExceptionStatus, ExpectedStatus); \ + ExceptionStatus, (ExpectedStatus)); \ } #endif /* _APITEST_H */