mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-05 09:39:32 +00:00
(Net) Only comment out printf
This commit is contained in:
parent
8dd4333e16
commit
5032c677e6
@ -124,7 +124,6 @@ error:
|
||||
return -1;
|
||||
}
|
||||
|
||||
#if 0
|
||||
static void net_http_send(int fd, bool * error,
|
||||
const char * data, size_t len)
|
||||
{
|
||||
@ -148,18 +147,13 @@ static void net_http_send(int fd, bool * error,
|
||||
len -= thislen;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
static void net_http_send_str(int fd, bool *error, const char *text)
|
||||
{
|
||||
#if 0
|
||||
printf("%s",text);
|
||||
net_http_send(fd, error, text, strlen(text));
|
||||
#else
|
||||
(void)fd;
|
||||
(void)error;
|
||||
(void)text;
|
||||
#endif
|
||||
net_http_send(fd, error, text, strlen(text));
|
||||
}
|
||||
|
||||
static ssize_t net_http_recv(int fd, bool *error,
|
||||
|
Loading…
Reference in New Issue
Block a user