Indentation change.

This commit is contained in:
Nicolás Ortega Froysa 2017-11-08 01:54:14 +01:00
parent 3e15f1dc8a
commit 65790d8da3
No known key found for this signature in database
GPG Key ID: FEC70E3BAE2E69BF

View File

@ -16,7 +16,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <neocomm.h> #include <neocomm.h>
#include <stdio.h> #include <stdio.h>
#include <signal.h> #include <signal.h>
@ -31,7 +30,8 @@ void quit(int sig) {
int main(int argc, char *argv[]) { int main(int argc, char *argv[]) {
if(argc != 2 && argc != 4) if(argc != 2 && argc != 4)
{ {
printf("Usage: %s <local_port> [<foreign_address> <foreign_port>]\n", argv[0]); printf("Usage: %s <local_port> [<foreign_address> <foreign_port>]\n",
argv[0]);
return 1; return 1;
} }
unsigned short port = atoi(argv[1]); unsigned short port = atoi(argv[1]);