Changes in uspace/lib/posix/src/stdio.c [ef84413:28a5ebd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/src/stdio.c
ref84413 r28a5ebd 249 249 * @return The number of written characters. 250 250 */ 251 static int _dprintf_wstr_write(const wchar_t *str, size_t size, void *fd)251 static int _dprintf_wstr_write(const char32_t *str, size_t size, void *fd) 252 252 { 253 253 size_t offset = 0; … … 268 268 269 269 chars++; 270 offset += sizeof( wchar_t);270 offset += sizeof(char32_t); 271 271 } 272 272
Note:
See TracChangeset
for help on using the changeset viewer.