aboutsummaryrefslogtreecommitdiff
path: root/programs/tsctp.c
diff options
context:
space:
mode:
authorFelix Weinrank <info@weinrank.net>2015-08-26 12:48:54 +0200
committerFelix Weinrank <info@weinrank.net>2015-08-26 12:48:54 +0200
commit6f40493d44d125f7007890f1234f8954548e03c3 (patch)
tree5f3f34737bb8a06eab2ecf44ada1cca8abe42fc5 /programs/tsctp.c
parent2b4cc35059c445b613e7e06c709f17ccf8d9ae5e (diff)
downloadusrsctp-6f40493d44d125f7007890f1234f8954548e03c3.tar.gz
coding style: if() -> if ()
Diffstat (limited to 'programs/tsctp.c')
-rw-r--r--programs/tsctp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/tsctp.c b/programs/tsctp.c
index d4c9eda3..73593599 100644
--- a/programs/tsctp.c
+++ b/programs/tsctp.c
@@ -677,7 +677,7 @@ int main(int argc, char **argv)
#ifdef HAVE_SIN_LEN
remote_addr.sin_len = sizeof(struct sockaddr_in);
#endif
- if(!inet_pton(AF_INET, argv[optind], &remote_addr.sin_addr.s_addr)){
+ if (!inet_pton(AF_INET, argv[optind], &remote_addr.sin_addr.s_addr)){
printf("error: invalid destination address\n");
exit(1);
}