From 48b719cf68db72f77a650e235ffa87bdd925ed6b Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 1 Dec 2009 16:15:54 +0100 Subject: Fixed uint* to work on Windows. Thanks to Patrick Spendrin. --- libssh/packet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libssh/packet.c') diff --git a/libssh/packet.c b/libssh/packet.c index 2a5f1b39..caa47058 100644 --- a/libssh/packet.c +++ b/libssh/packet.c @@ -309,7 +309,7 @@ void ssh_packet_set_default_callbacks(ssh_session session){ * @brief dispatch the call of packet handlers callbacks for a received packet * @param type type of packet */ -void ssh_packet_process(ssh_session session, u_int8_t type){ +void ssh_packet_process(ssh_session session, uint8_t type){ struct ssh_iterator *i; int r; ssh_packet_callbacks cb; -- cgit