--- sourceforge.net/trunk/rdesktop/rdp.c 2002/09/17 09:55:03 176 +++ sourceforge.net/trunk/rdesktop/rdp.c 2002/09/24 07:59:14 192 @@ -196,7 +196,7 @@ /* Send a synchronisation PDU */ static void -rdp_send_synchronise() +rdp_send_synchronise(void) { STREAM s; @@ -434,7 +434,7 @@ /* Send a confirm active PDU */ static void -rdp_send_confirm_active() +rdp_send_confirm_active(void) { STREAM s; uint16 caplen = @@ -681,7 +681,7 @@ /* Process incoming packets */ void -rdp_main_loop() +rdp_main_loop(void) { uint8 type; STREAM s; @@ -721,7 +721,7 @@ /* Disconnect from the RDP layer */ void -rdp_disconnect() +rdp_disconnect(void) { sec_disconnect(); }