Remove unncessary return statements

This commit is contained in:
Miroslav Lichvar
2013-05-21 14:29:22 +02:00
parent d510154ba2
commit 359d444343
26 changed files with 0 additions and 176 deletions

View File

@@ -182,8 +182,6 @@ open_io(const char *hostname, int port)
perror("Can't create socket");
exit(1);
}
return;
}
/* ================================================== */
@@ -925,7 +923,6 @@ cvt_to_sec_usec(double x, long *sec, long *usec) {
*sec = s;
*usec = us;
return;
}
/* ================================================== */