Ignore:
Timestamp:
06/15/00 19:40:34 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
a94c0ace
Parents:
667c8a0
Message:

Fixing warning obtained by some users.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/libcsupport/src/printk.c

    r667c8a0 ra3726b1  
    118118          break;
    119119        case 'c':
     120#if 0
    120121#if defined(_TMS320C3x) || defined(_TMS320C4x)
    121122          BSP_output_char(va_arg(ap, int));
    122123#else
    123124          BSP_output_char(va_arg(ap, char));
     125#endif
     126#else
     127          BSP_output_char(va_arg(ap, int));
    124128#endif
    125129          break;
Note: See TracChangeset for help on using the changeset viewer.