Changeset 1433ecda in mainline for uspace/app/fontviewer


Ignore:
Timestamp:
2018-04-04T15:42:37Z (8 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/app/fontviewer/fontviewer.c

    r47b2d7e3 r1433ecda  
    8282                                if (points <= increment) {
    8383                                        points = 1;
    84                                 }
    85                                 else {
    86                                         points-= increment;
     84                                } else {
     85                                        points -= increment;
    8786                                }
    8887                        }
     
    139138
    140139static int text(drawctx_t *, font_t *, source_t *, surface_coord_t x,
    141     surface_coord_t , const char *, ...) _HELENOS_PRINTF_ATTRIBUTE(6, 7);
     140    surface_coord_t, const char *, ...) _HELENOS_PRINTF_ATTRIBUTE(6, 7);
    142141static int text(drawctx_t *drawctx, font_t *font, source_t *source,
    143142    surface_coord_t x, surface_coord_t y, const char *fmt, ...)
     
    253252        if (argc < 3) {
    254253                font_path = NULL;
    255         }
    256         else {
     254        } else {
    257255                font_path = argv[2];
    258256        }
Note: See TracChangeset for help on using the changeset viewer.