Changeset 98000fb in mainline for kernel/generic/src/printf/vprintf.c


Ignore:
Timestamp:
2009-06-03T19:34:45Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
301ff30
Parents:
69e68e3
Message:

remove redundant index_t and count_t types (which were always quite ambiguous and not actually needed)

File:
1 edited

Legend:

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

    r69e68e3 r98000fb  
    4747{
    4848        size_t offset = 0;
    49         count_t chars = 0;
     49        size_t chars = 0;
    5050       
    5151        while (offset < size) {
     
    6060{
    6161        size_t offset = 0;
    62         count_t chars = 0;
     62        size_t chars = 0;
    6363       
    6464        while (offset < size) {
     
    7474{
    7575        size_t offset = 0;
    76         count_t chars = 0;
     76        size_t chars = 0;
    7777        wchar_t uc;
    7878       
Note: See TracChangeset for help on using the changeset viewer.