diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2022-08-18 15:01:26 +1000 |
---|---|---|
committer | Jim Mussared <jim.mussared@gmail.com> | 2023-06-08 17:54:11 +1000 |
commit | f5f9edf6457624bf32e71b0c2fdcfbfa5d5753a6 (patch) | |
tree | a8cce3668eed96ebb39abe626c6a8a52d5787f34 /extmod/moduwebsocket.c | |
parent | 7f5d5c72718af773db751269c6ae14037b9c0727 (diff) |
all: Rename UMODULE to MODULE in preprocessor/Makefile vars.
This work was funded through GitHub Sponsors.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'extmod/moduwebsocket.c')
-rw-r--r-- | extmod/moduwebsocket.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extmod/moduwebsocket.c b/extmod/moduwebsocket.c index 76330f312..ac90dea8b 100644 --- a/extmod/moduwebsocket.c +++ b/extmod/moduwebsocket.c @@ -32,7 +32,7 @@ #include "py/stream.h" #include "extmod/moduwebsocket.h" -#if MICROPY_PY_UWEBSOCKET +#if MICROPY_PY_WEBSOCKET enum { FRAME_HEADER, FRAME_OPT, PAYLOAD, CONTROL }; @@ -313,4 +313,4 @@ const mp_obj_module_t mp_module_websocket = { MP_REGISTER_MODULE(MP_QSTR_websocket, mp_module_websocket); -#endif // MICROPY_PY_UWEBSOCKET +#endif // MICROPY_PY_WEBSOCKET |