diff options
author | Zach C | 2008-08-31 11:25:22 -0700 |
---|---|---|
committer | Jonathan Beck | 2008-11-24 22:49:07 +0100 |
commit | f4c4b783c8dbe2fe8e7e6f6b5f19f0d44b489c9a (patch) | |
tree | 9ef8c57fe298a4ae9e0a443d7103e6126c869020 /src/usbmux.c | |
parent | 8c3a01e11bb9c74e2a1bb7da143cb35469f29fba (diff) | |
download | libplist-f4c4b783c8dbe2fe8e7e6f6b5f19f0d44b489c9a.tar.gz libplist-f4c4b783c8dbe2fe8e7e6f6b5f19f0d44b489c9a.tar.bz2 |
Added binary-plist support (tweaked slightly to move stuff around)
Signed-off-by: Matt Colyer <matt@colyer.name>
fix makefile to take correct main function into account
Diffstat (limited to 'src/usbmux.c')
-rw-r--r-- | src/usbmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usbmux.c b/src/usbmux.c index 2114758..f0499fa 100644 --- a/src/usbmux.c +++ b/src/usbmux.c @@ -37,7 +37,7 @@ static int clients = 0; * * @return A USBMux packet */ -usbmux_tcp_header *new_mux_packet(uint16 s_port, uint16 d_port) +usbmux_tcp_header *new_mux_packet(uint16_t s_port, uint16_t d_port) { usbmux_tcp_header *conn = (usbmux_tcp_header *) malloc(sizeof(usbmux_tcp_header)); conn->type = htonl(6); |