Changeset 4e6577c in mainline for uspace/app/bdsh/tok.c


Ignore:
Timestamp:
2011-08-20T13:42:22Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c916dfc, e64df9a
Parents:
abf04a54 (diff), f41682c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge 64-bit build fix from Martin Sucha.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/tok.c

    rabf04a54 r4e6577c  
    224224wchar_t tok_look_char(tokenizer_t *tok)
    225225{
    226         unsigned int old_offset = tok->in_offset;
    227         unsigned int old_char_offset = tok->in_char_offset;
     226        size_t old_offset = tok->in_offset;
     227        size_t old_char_offset = tok->in_char_offset;
    228228        wchar_t ret = tok_get_char(tok);
    229229        tok->in_offset = old_offset;
Note: See TracChangeset for help on using the changeset viewer.