Ignore:
Timestamp:
2008-02-27T11:49:17Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
56976a17
Parents:
fdb7795
Message:

code cleanup (mostly signed/unsigned)
allow extra compiler warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/printf/printf_core.c

    rfdb7795 r6c441cf8  
    9494    struct printf_spec *ps)
    9595{
    96         return ps->write((void *)buf, count, ps->data);
     96        return ps->write((void *) buf, count, ps->data);
    9797}
    9898
     
    178178 * @return              Number of characters printed, negative value on failure.
    179179 */
    180 static int print_string(char *s, int width, int precision, uint64_t flags,
    181     struct printf_spec *ps)
     180static int print_string(char *s, int width, unsigned int precision,
     181        uint64_t flags, struct printf_spec *ps)
    182182{
    183183        int counter = 0;
Note: See TracChangeset for help on using the changeset viewer.