Changeset b6d5e31 in mainline
- Timestamp:
- 2018-12-14T18:48:04Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3c8b0a8
- Parents:
- 54cde43
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/multiboot/multiboot.c
r54cde43 rb6d5e31 55 55 /* 56 56 * Find last occurence of '/' before 'end'. If found, place start at 57 * next character. Otherwise, place start at beginning of buffer.57 * next character. Otherwise, place start at beginning of command line. 58 58 */ 59 59 const char *cp = end; 60 const char *start = buf;60 const char *start = cmd_line; 61 61 62 62 while (cp != start) {
Note:
See TracChangeset
for help on using the changeset viewer.