Ignore:
Timestamp:
2018-01-13T03:15:30Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
36df27eb, 50f19b7
Parents:
b7fd2a0
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-13 03:15:24)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-13 03:15:30)
Message:

Change (rc != 0) to (rc != EOK), where appropriate.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/ops/datawrite.c

    rb7fd2a0 ra53ed3a  
    5858        call->buffer = (uint8_t *) malloc(size, 0);
    5959        errno_t rc = copy_from_uspace(call->buffer, (void *) src, size);
    60         if (rc != 0) {
     60        if (rc != EOK) {
    6161                /*
    6262                 * call->buffer will be cleaned up in ipc_call_free() at the
Note: See TracChangeset for help on using the changeset viewer.