mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
Update tcpsocket.c to support 64-bit size_t
This commit is contained in:
parent
17b02ad07f
commit
e28dd24d18
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ static void client_not_be_used_read_cb(struct ustream *s, int bytes) {
|
|||
|
||||
len = ustream_read(s, buf, sizeof(buf));
|
||||
buf[len] = '\0';
|
||||
printf("Read %ld bytes from SSL connection: %s\n", len, buf);
|
||||
printf("Read %zd bytes from SSL connection: %s\n", len, buf);
|
||||
}
|
||||
|
||||
static void connect_cb(struct uloop_fd *f, unsigned int events) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue