Changeset d4475a44 in mainline for uspace/lib/c/include
- Timestamp:
- 2018-07-08T17:58:56Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 914c693
- Parents:
- 6abff2a8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/adt/list.h
r6abff2a8 rd4475a44 40 40 #include <stdbool.h> 41 41 #include <stddef.h> 42 #include <stdint.h> 42 43 #include <trace.h> 43 44 … … 421 422 422 423 list_remove(tmp); 423 return (void *) (((char*) tmp) - offset);424 return (void *) (((uint8_t *) tmp) - offset); 424 425 } 425 426
Note:
See TracChangeset
for help on using the changeset viewer.