diff options
author | Patrick Steuer <patrick.steuer@de.ibm.com> | 2019-04-07 13:30:26 +0200 |
---|---|---|
committer | Patrick Steuer <patrick.steuer@de.ibm.com> | 2019-04-07 13:30:26 +0200 |
commit | aa447d6fdbc250cf0f8f361daf3b734f288bbad1 (patch) | |
tree | 584826a63904de27472107d1a0640f52336b66b0 | |
parent | Coverity: fix two minor NPD issues. (diff) | |
download | openssl-aa447d6fdbc250cf0f8f361daf3b734f288bbad1.tar.xz openssl-aa447d6fdbc250cf0f8f361daf3b734f288bbad1.zip |
fix --strict-warnings build
C++ style comments are not allowed in ISO C90
Signed-off-by: Patrick Steuer <patrick.steuer@de.ibm.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/8693)
Diffstat (limited to '')
-rw-r--r-- | include/internal/refcount.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/internal/refcount.h b/include/internal/refcount.h index f74f79415d..eddf12415f 100644 --- a/include/internal/refcount.h +++ b/include/internal/refcount.h @@ -106,7 +106,7 @@ static __inline int CRYPTO_DOWN_REF(volatile int *val, int *ret, void *lock) # if _WIN32_WCE >= 0x600 extern long __cdecl _InterlockedExchangeAdd(long volatile*, long); # else - // under Windows CE we still have old-style Interlocked* functions + /* under Windows CE we still have old-style Interlocked* functions */ extern long __cdecl InterlockedExchangeAdd(long volatile*, long); # define _InterlockedExchangeAdd InterlockedExchangeAdd # endif |