On Wed, Feb 10, 2016 at 6:43 PM, Ben Pfaff <[email protected]> wrote:

> Signed-off-by: Ben Pfaff <[email protected]>
> ---
>  include/openvswitch/compiler.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/openvswitch/compiler.h
> b/include/openvswitch/compiler.h
> index f13f315..60c408b 100644
> --- a/include/openvswitch/compiler.h
> +++ b/include/openvswitch/compiler.h
> @@ -206,7 +206,7 @@
>  #pragma section(".CRT$XCU",read)
>  #define OVS_CONSTRUCTOR(f) \
>      static void __cdecl f(void); \
> -    __declspec(allocate(".CRT$XCU")) void (__cdecl*f##_)(void) = f; \
> +    __declspec(allocate(".CRT$XCU")) static void (__cdecl*f##_)(void) =
> f; \
>      static void __cdecl f(void)
>  #else
>  #define OVS_CONSTRUCTOR(f) \
>

Ah, I see...  I should have looked here to find the root cause of the
windows build error.  Thanks for pointing it out!

Acked-by: Russell Bryant <[email protected]>
_______________________________________________
dev mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/dev

Reply via email to