Changeset 850fd32 in mainline for uspace/lib/c
- Timestamp:
- 2018-03-11T01:21:19Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 84239b1, f0e825d
- Parents:
- 338d54a7
- Location:
- uspace/lib/c/generic
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/double_to_str.c
r338d54a7 r850fd32 665 665 return -1; 666 666 } 667 } ;667 } 668 668 669 669 assert(/* 0 <= len && */ len < buf_size); -
uspace/lib/c/generic/io/printf_core.c
r338d54a7 r850fd32 1388 1388 default: 1389 1389 end = true; 1390 } ;1390 } 1391 1391 } while (!end); 1392 1392 -
uspace/lib/c/generic/vfs/canonify.c
r338d54a7 r850fd32 96 96 return ret; 97 97 } 98 unsigned i; 99 for (i = 1; cur->stop[i] && cur->stop[i] != '/'; i++) 100 ; 98 unsigned i = 1; 99 while (cur->stop[i] && cur->stop[i] != '/') 100 i++; 101 101 102 ret.kind = TK_COMP; 102 103 ret.start = &cur->stop[1]; -
uspace/lib/c/generic/vfs/inbox.c
r338d54a7 r850fd32 79 79 { 80 80 inbox_entry *next = NULL; 81 int result; 81 82 82 83 list_foreach(inb_list, link, inbox_entry, e) { … … 85 86 case -1: 86 87 continue; 87 case 0: ;88 intresult = e->file;88 case 0: 89 result = e->file; 89 90 if (file == -1) { 90 91 free(e->name);
Note:
See TracChangeset
for help on using the changeset viewer.