]> granicus.if.org Git - libevent/commit
Renamed sin to saddr due to name conflict
authorTrond Norbye <trond.norbye@gmail.com>
Fri, 21 Mar 2014 10:59:55 +0000 (11:59 +0100)
committerTrond Norbye <trond.norbye@gmail.com>
Fri, 21 Mar 2014 13:26:10 +0000 (14:26 +0100)
commitdc82c8d372c2045e70679c59a39a05664c2fc6c9
tree696faea27fa813be740d580da628c48ff1a39963
parent6a1c4d501b421a01d1b057b89ad51567ebed6338
Renamed sin to saddr due to name conflict

During building on MSVC 2013 I got a compiler error by a
type conflict for sin:

test-fdleak.c(60) : error C2365: 'sin' : redefinition; previous definition was 'function'
test-fdleak.c(134) : error C2070: 'double (__cdecl *)()': illegal sizeof operand
test-fdleak.c(134) : error C2198: 'evconnlistener_new_bind' : too few arguments for call
test-fdleak.c(148) : error C2070: 'double (__cdecl *)()': illegal sizeof operand
test-fdleak.c(148) : error C2168: 'memcpy' : too few actual parameters for intrinsic function
test-fdleak.c(149) : error C2224: left of '.sin_family' must have struct/union type
test-fdleak.c(212) : error C2070: 'double (__cdecl *)()': illegal sizeof operand
test-fdleak.c(212) : error C2198: 'bufferevent_socket_connect' : too few arguments for call
test-fdleak.c(239) : error C2070: 'double (__cdecl *)()': illegal sizeof operand
test-fdleak.c(239) : error C2168: 'memset' : too few actual parameters for intrinsic function
test-fdleak.c(240) : error C2224: left of '.sin_family' must have struct/union type
test-fdleak.c(241) : error C2224: left of '.sin_addr' must have struct/union type
test-fdleak.c(242) : error C2224: left of '.sin_port' must have struct/union type

The simplest solution to this problem would be to rename
the variable.
test/test-fdleak.c