Ignore:
Timestamp:
2017-05-04T22:17:36Z (8 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
31a30fa
Parents:
dc12262
Message:

cstyle (no change in functionality)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/io/printf_core.c

    rdc12262 re141281  
    12211221                precision = (precision < 0) ? 6 : precision;
    12221222                return print_double_fixed(g, precision, width, flags, ps);
    1223 
     1223       
    12241224        case 'E':
    12251225                flags |= __PRINTF_FLAG_BIGCHARS;
     
    12281228                precision = (precision < 0) ? 6 : precision;
    12291229                return print_double_scientific(g, precision, width, flags, ps);
    1230 
     1230       
    12311231        case 'G':
    12321232                flags |= __PRINTF_FLAG_BIGCHARS;
     
    12341234        case 'g':
    12351235                return print_double_generic(g, precision, width, flags, ps);
    1236 
     1236       
    12371237        default:
    12381238                assert(false);
Note: See TracChangeset for help on using the changeset viewer.