From 6bff1ca893dc75495b0fd8df482b81f6e6ca489f Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Wed, 20 May 2015 13:49:41 -0700 Subject: [PATCH] Specify argc and argv arguments to refcount_test:main. (This is to keep MSVC happy.) Change-Id: I8c410587d8ee0f0df33a5f87c6a6c9b5047f8abb --- crypto/refcount_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/refcount_test.c b/crypto/refcount_test.c index 53db90f6..97bfbd6f 100644 --- a/crypto/refcount_test.c +++ b/crypto/refcount_test.c @@ -19,7 +19,7 @@ #include -int main() { +int main(int argc, char **argv) { CRYPTO_refcount_t count = 0; CRYPTO_refcount_inc(&count);