- Timestamp:
- 2009-08-08T15:40:59Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 24f27bb, c145bc2
- Parents:
- 31de325 (diff), 42cfd91 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace/lib/libc/generic
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/io/printf_core.c
r31de325 r330965c 490 490 counter += retval; 491 491 492 /* Print t ailing spaces */492 /* Print trailing spaces */ 493 493 494 494 while (width-- > 0) { -
uspace/lib/libc/generic/io/vsnprintf.c
r31de325 r330965c 100 100 } 101 101 102 /* Buffer is big enough tto print the whole string */102 /* Buffer is big enough to print the whole string */ 103 103 memcpy((void *)(data->dst + data->len), (void *) str, size); 104 104 data->len += size; -
uspace/lib/libc/generic/malloc.c
r31de325 r330965c 392 392 if (orig_size - real_size >= STRUCT_OVERHEAD) { 393 393 /* Split the original block to a full block 394 and a t ailing free block */394 and a trailing free block */ 395 395 block_init((void *) head, real_size, false); 396 396 block_init((void *) head + real_size,
Note:
See TracChangeset
for help on using the changeset viewer.