Skip to content

Commit

Permalink
checksctp: fix trivial warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
marceloleitner committed Nov 18, 2015
1 parent 90f4230 commit 889ea52
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/withsctp/checksctp.c
Expand Up @@ -30,6 +30,7 @@
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>

Expand All @@ -39,7 +40,7 @@
*/
#define SHOULD_IPPROTO_SCTP 132

main()
int main(void)
{
int fd;

Expand All @@ -53,5 +54,5 @@ main()
}

close(fd);
exit(0);
return 0;
}

0 comments on commit 889ea52

Please sign in to comment.