1
0
Fork 0
mirror of https://repo.or.cz/socat.git synced 2025-07-08 21:36:34 +00:00

replaced // comments with C conforming /* */

This commit is contained in:
Gerhard Rieger 2008-09-19 09:05:08 +02:00
parent 0e1eb7e4b4
commit d70b8963aa
4 changed files with 6 additions and 9 deletions

View file

@ -678,7 +678,7 @@ int Chmod(const char *path, mode_t mode) {
int Poll(struct pollfd *ufds, unsigned int nfds, int timeout) {
int result;
if (nfds == 4) {
Debug10("poll({%d,0x%02hx,}{%d,0x%02hx,}{%d,0x%02hx,}{%d,0x%02hx,}, , %u, %d)",
Debug10("poll({%d,0x%02hx,}{%d,0x%02hx,}{%d,0x%02hx,}{%d,0x%02hx,}, %u, %d)",
ufds[0].fd, ufds[0].events, ufds[1].fd, ufds[1].events,
ufds[2].fd, ufds[2].events, ufds[3].fd, ufds[3].events,
nfds, timeout);