Skip to content

Commit

Permalink
CID 122505 (#1 of 1): Missing return statement (MISSING_RETURN)5.
Browse files Browse the repository at this point in the history
missing_return: Arriving at the end of a function without returning a
value.
  • Loading branch information
gjedeer committed Jul 7, 2015
1 parent 2f56b69 commit 92b0372
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ int local_bind()
}

log_printf(L_DEBUG, "Bound to local port %d\n", local_port);

return 0;
}

/* Bind the client.sockfd to a tunnel */
Expand Down

0 comments on commit 92b0372

Please sign in to comment.