diff options
author | stijn <stijn@ignitron.net> | 2020-04-16 09:13:57 +0200 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-04-23 11:24:25 +1000 |
commit | 84fa3312cfa7d2237d4b56952f2cd6e3591210c4 (patch) | |
tree | dc2b3e67bad9969fc5792ca0822798d58addf174 /extmod/moduwebsocket.c | |
parent | d6243568a05d423b58522435c3779975acbf56dd (diff) |
all: Format code to add space after C++-style comment start.
Note: the uncrustify configuration is explicitly set to 'add' instead of
'force' in order not to alter the comments which use extra spaces after //
as a means of indenting text for clarity.
Diffstat (limited to 'extmod/moduwebsocket.c')
-rw-r--r-- | extmod/moduwebsocket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/moduwebsocket.c b/extmod/moduwebsocket.c index a9bfd8589..34b520f33 100644 --- a/extmod/moduwebsocket.c +++ b/extmod/moduwebsocket.c @@ -200,7 +200,7 @@ STATIC mp_uint_t websocket_read(mp_obj_t self_in, void *buf, mp_uint_t size, int return 0; } - //DEBUG_printf("Finished receiving ctrl message %x, ignoring\n", self->last_flags); + // DEBUG_printf("Finished receiving ctrl message %x, ignoring\n", self->last_flags); continue; } } |