aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2015-07-12 15:44:43 -0400
committerNick Mathewson <nickm@torproject.org>2015-07-12 15:44:43 -0400
commit19f9803f8e56992d735d0faca88061d7d5cca07e (patch)
treed568c40c6b58a0bf6b63f1b86568d50362a55925
parent58cd21f6014a9d8dcd54669fb7fcc760b33ca6b2 (diff)
downloadtor-19f9803f8e56992d735d0faca88061d7d5cca07e.tar.gz
tor-19f9803f8e56992d735d0faca88061d7d5cca07e.zip
Okay, this time it was my fault
-rw-r--r--src/common/compat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/compat.c b/src/common/compat.c
index 12ad52dbb8..07f011d63d 100644
--- a/src/common/compat.c
+++ b/src/common/compat.c
@@ -80,7 +80,7 @@ wint_t _getwch(void);
#define WEOF (wchar_t)(0xFFFF)
#endif
#if defined(HAVE_DECL_SECUREZEROMEMORY) && !HAVE_DECL_SECUREZEROMEMORY
-static void inline SecureZeroMemory(PVOID ptr, SIZE_T cnt)
+static inline void SecureZeroMemory(PVOID ptr, SIZE_T cnt)
{
volatile char *vcptr = (volatile char*)ptr;
while (cnt--)