Skip to content

Commit

Permalink
indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
umlaeute committed Mar 14, 2024
1 parent d199150 commit c156e75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iemnet.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void iemnet__closesocket(int sockfd, int verbose)
# define SHUT_RDWR 2
#endif
int how = SHUT_RDWR;
/* needed on linux, since the recv won't shutdown on sys_closesocket() alone */
/* needed on linux, since the recv won't shutdown on sys_closesocket() alone */
int err = shutdown(sockfd, how);
if(verbose && err) {
perror("iemnet:socket-shutdown");
Expand Down
2 changes: 1 addition & 1 deletion tcpserver.c
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ static void *tcpserver_new(t_floatarg fportno)
x->x_sockout = outlet_new(&x->x_obj, gensym("float"));
x->x_addrout = outlet_new(&x->x_obj, gensym("list" ));
x->x_statusout = outlet_new(&x->x_obj,
0);/* 5th outlet for everything else */
0);/* 5th outlet for everything else */

x->x_serialize = 1;
x->x_accepting = 1;
Expand Down

0 comments on commit c156e75

Please sign in to comment.