Inline function declarations have to be prototypes.
authorBen Laurie <ben@openssl.org>
Sat, 23 Jun 2007 18:40:16 +0000 (18:40 +0000)
committerBen Laurie <ben@openssl.org>
Sat, 23 Jun 2007 18:40:16 +0000 (18:40 +0000)
crypto/stack/safestack.h

index 53c1695f2a5bed750a09009553dbf2a165a12247..a2b028721770c4d7956f70bbb60ab37b007f5774 100644 (file)
@@ -79,7 +79,7 @@ STACK_OF(type) \
 OPENSSL_INLINE STACK_OF(type) *sk_##type##_new( \
        int (*cmp)(const type * const *, const type *const *)) \
     { return (STACK_OF(type) *)sk_new((int (*)(const char * const *, const char * const *))cmp); } \
-OPENSSL_INLINE STACK_OF(type) *sk_##type##_new_null() \
+OPENSSL_INLINE STACK_OF(type) *sk_##type##_new_null(void) \
     { return (STACK_OF(type) *)sk_new_null(); } \
 OPENSSL_INLINE void sk_##type##_free(STACK_OF(type) *sk) \
     { sk_free((STACK *)sk); } \