summaryrefslogtreecommitdiff
path: root/ports/unix/modusocket.c
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2022-05-05 13:28:32 +1000
committerDamien George <damien@micropython.org>2022-05-05 13:30:40 +1000
commit5b700b0af90591d6b1a2c087bb8de6b7f1bfdd2d (patch)
treee5709c37e06eb748d326d6e828e17756882eff09 /ports/unix/modusocket.c
parentaec8db3cd120e897e7937d21c724393205d572cf (diff)
all: Reformat remaining C code that doesn't have a space after a comma.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'ports/unix/modusocket.c')
-rw-r--r--ports/unix/modusocket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/unix/modusocket.c b/ports/unix/modusocket.c
index adf043dc2..5edff740f 100644
--- a/ports/unix/modusocket.c
+++ b/ports/unix/modusocket.c
@@ -402,7 +402,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_2(socket_setblocking_obj, socket_setblocking);
STATIC mp_obj_t socket_settimeout(mp_obj_t self_in, mp_obj_t timeout_in) {
mp_obj_socket_t *self = MP_OBJ_TO_PTR(self_in);
- struct timeval tv = {0,};
+ struct timeval tv = {0, };
bool new_blocking = true;
// Timeout of None means no timeout, which in POSIX is signified with 0 timeout,