Changeset 1433ecda in mainline for uspace/lib/draw


Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/draw/font.c

    r47b2d7e3 r1433ecda  
    6060}
    6161
    62 errno_t font_get_metrics(font_t *font, font_metrics_t *metrics) {
     62errno_t font_get_metrics(font_t *font, font_metrics_t *metrics)
     63{
    6364        return font->backend->get_font_metrics(font->backend_data, metrics);
    6465}
    6566
    66 errno_t font_resolve_glyph(font_t *font, wchar_t c, glyph_id_t *glyph_id) {
     67errno_t font_resolve_glyph(font_t *font, wchar_t c, glyph_id_t *glyph_id)
     68{
    6769        return font->backend->resolve_glyph(font->backend_data, c, glyph_id);
    6870}
Note: See TracChangeset for help on using the changeset viewer.