diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-10-31 12:40:34 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-10-31 12:40:34 +0000 |
commit | 4ea734a376efb504a1e6276f42ae41faaf7c5fe8 (patch) | |
tree | 08a06a17564b8feed4d7ba48a0d820823205446d /src/irc/irc-dcc.c | |
parent | 3369a00959a4bc037fc51187a05a8c836919c07c (diff) | |
download | weechat-4ea734a376efb504a1e6276f42ae41faaf7c5fe8.zip |
Fixed type used for htonl function (replaced u_int32_t by uint32_t, now OK under
MacOS)
Diffstat (limited to 'src/irc/irc-dcc.c')
-rw-r--r-- | src/irc/irc-dcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/irc-dcc.c b/src/irc/irc-dcc.c index 0512375af..739fe93c1 100644 --- a/src/irc/irc-dcc.c +++ b/src/irc/irc-dcc.c @@ -1172,7 +1172,7 @@ dcc_handle () t_irc_dcc *ptr_dcc; int num_read, num_sent; static char buffer[102400]; - u_int32_t pos; + uint32_t pos; fd_set read_fd; static struct timeval timeout; int sock; |