aboutsummaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
Diffstat (limited to 'os')
-rw-r--r--os/various/memstreams.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/various/memstreams.c b/os/various/memstreams.c
index 11dd5b8ac..f7ba8b813 100644
--- a/os/various/memstreams.c
+++ b/os/various/memstreams.c
@@ -67,10 +67,10 @@ static msg_t put(void *ip, uint8_t b) {
MemoryStream *msp = ip;
if (msp->size - msp->eos <= 0)
- return RDY_RESET;
+ return MSG_RESET;
*(msp->buffer + msp->eos) = b;
msp->eos += 1;
- return RDY_OK;
+ return MSG_OK;
}
static msg_t get(void *ip) {
@@ -78,7 +78,7 @@ static msg_t get(void *ip) {
MemoryStream *msp = ip;
if (msp->eos - msp->offset <= 0)
- return RDY_RESET;
+ return MSG_RESET;
b = *(msp->buffer + msp->offset);
msp->offset += 1;
return b;