~jakub/helenos/ia64-revival

« back to all changes in this revision

Viewing changes to kernel/test/print/print4.c

  • Committer: Jakub Jermar
  • Date: 2011-04-13 14:45:41 UTC
  • mfrom: (527.1.397 main-clone)
  • Revision ID: jakub@jermar.eu-20110413144541-x0j3r1zxqhsljx1o
MergeĀ mainlineĀ changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
                
44
44
                TPRINTF("  ");
45
45
                for (index = 0; index < 32; index++)
46
 
                        TPRINTF("%lc", (wchar_t) ((group << 5) + index));
 
46
                        TPRINTF("%lc", (wint_t) ((group << 5) + index));
47
47
                
48
48
                TPRINTF("\n");
49
49
        }
55
55
                
56
56
                uint8_t index;
57
57
                for (index = 0; index < 32; index++)
58
 
                        TPRINTF("%lc", (wchar_t) ((group << 5) + index));
 
58
                        TPRINTF("%lc", (wint_t) ((group << 5) + index));
59
59
                
60
60
                TPRINTF("\n");
61
61
        }