Ignore:
Timestamp:
2009-06-03T19:34:45Z (16 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/vsnprintf.c

    r69e68e3 r98000fb  
    8383                 * of string
    8484                 */
    85                 index_t index = 0;
     85                size_t index = 0;
    8686               
    8787                while (index < size) {
     
    131131static int vsnprintf_wstr_write(const wchar_t *str, size_t size, vsnprintf_data_t *data)
    132132{
    133         index_t index = 0;
     133        size_t index = 0;
    134134       
    135135        while (index < (size / sizeof(wchar_t))) {
Note: See TracChangeset for help on using the changeset viewer.