Changeset 1ef0fc3 in mainline for uspace/app/sbi/src/builtin/bi_fun.c


Ignore:
Timestamp:
2010-04-10T11:19:18Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d7e45c8
Parents:
2721a75 (diff), 074444f (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 from lp:~jsvoboda/helenos/sysel.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/builtin/bi_fun.c

    r2721a75 r1ef0fc3  
    9999{
    100100        rdata_var_t *var;
     101        int char_val;
     102        int rc;
    101103
    102104#ifdef DEBUG_RUN_TRACE
     
    107109
    108110        switch (var->vc) {
     111        case vc_char:
     112                rc = bigint_get_value_int(&var->u.char_v->value, &char_val);
     113                if (rc == EOK)
     114                        printf("%lc\n", char_val);
     115                else
     116                        printf("???\n");
     117                break;
    109118        case vc_int:
    110119                bigint_print(&var->u.int_v->value);
Note: See TracChangeset for help on using the changeset viewer.