--- sourceforge.net/trunk/rdesktop/rdpsnd.c 2003/07/09 07:26:14 434 +++ sourceforge.net/trunk/rdesktop/rdpsnd.c 2003/07/09 09:18:20 435 @@ -6,12 +6,14 @@ rdpsnd_process(STREAM s) { printf("rdpsnd_process\n"); - hexdump(s->p, s->end-s->p); + hexdump(s->p, s->end - s->p); } BOOL rdpsnd_init(void) { - rdpsnd_channel = channel_register("rdpsnd", CHANNEL_OPTION_INITIALIZED | CHANNEL_OPTION_ENCRYPT_RDP, rdpsnd_process); + rdpsnd_channel = + channel_register("rdpsnd", CHANNEL_OPTION_INITIALIZED | CHANNEL_OPTION_ENCRYPT_RDP, + rdpsnd_process); return (rdpsnd_channel != NULL); }