Changeset d145ecb in mainline for uspace/lib/gfxfont/src/font.c
- Timestamp:
- 2020-09-21T14:02:42Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aaf962e6
- Parents:
- 003c413
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gfxfont/src/font.c
r003c413 rd145ecb 375 375 return rc; 376 376 377 rc = riff_w chunk_write(riffw, (void *) props, sizeof(*props));377 rc = riff_write(riffw, (void *) props, sizeof(*props)); 378 378 if (rc != EOK) 379 379 return rc; … … 402 402 return rc; 403 403 404 rc = riff_w chunk_write(riffw, (void *) metrics, sizeof(*metrics));404 rc = riff_write(riffw, (void *) metrics, sizeof(*metrics)); 405 405 if (rc != EOK) 406 406 return rc; … … 445 445 return rc; 446 446 447 rc = riff_w chunk_write(riffw, (void *) alloc.pixels,447 rc = riff_write(riffw, (void *) alloc.pixels, 448 448 font->rect.p1.x * font->rect.p1.y * sizeof(uint32_t)); 449 449 if (rc != EOK)
Note:
See TracChangeset
for help on using the changeset viewer.