wmbiff: FTBFS with initialize_gnutls
The first argument for the function initialize_gnutls is an intptr_t so wmbiff fails to build from source. This patch changes the current int to intptr_t. Signed-off-by: Rodolfo García Peñas (kix) <kix@kix.es>
This commit is contained in:
parent
91fc6b9f12
commit
6957f3efdc
1 changed files with 1 additions and 1 deletions
|
@ -657,7 +657,7 @@ void handle_gnutls_read_error(int readbytes, struct connection_state *scs)
|
||||||
|
|
||||||
#else
|
#else
|
||||||
/* declare stubs when tls isn't compiled in */
|
/* declare stubs when tls isn't compiled in */
|
||||||
struct connection_state *initialize_gnutls(UNUSED(int sd),
|
struct connection_state *initialize_gnutls(UNUSED(intptr_t sd),
|
||||||
UNUSED(char *name),
|
UNUSED(char *name),
|
||||||
UNUSED(Pop3 pc),
|
UNUSED(Pop3 pc),
|
||||||
UNUSED(const char
|
UNUSED(const char
|
||||||
|
|
Loading…
Reference in a new issue