Changeset fbf7b4c in mainline for test/print/print1/test.c


Ignore:
Timestamp:
2006-06-18T10:52:41Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e600ec4
Parents:
281994b
Message:

make kernel prints case consistent

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/print/print1/test.c

    r281994b rfbf7b4c  
    5050        printf(" 0xint: x '%#x', 5.3x '%#5.3x', -5.3x '%#-5.3x', 3.5x '%#3.5x', -3.5x '%#-3.5x' \n",17, 17, 17, 17, 17 );
    5151
    52         printf("'%#llx' 64bit, '%#x' 32bit, '%#hhx' 8bit, '%#hx' 16bit, __native '%#zX'. '%#llX' 64bit and '%s' string.\n", 0x1234567887654321ll, 0x12345678, 0x12, 0x1234, nat, 0x1234567887654321ull, "Lovely string" );
     52        printf("'%#llx' 64bit, '%#x' 32bit, '%#hhx' 8bit, '%#hx' 16bit, __native '%#zx'. '%#llx' 64bit and '%s' string.\n", 0x1234567887654321ll, 0x12345678, 0x12, 0x1234, nat, 0x1234567887654321ull, "Lovely string" );
    5353       
    5454        printf(" Print to NULL '%s'\n",NULL);
Note: See TracChangeset for help on using the changeset viewer.