Changes in kernel/generic/src/main/kinit.c [7e752b2:2fa10f6] in mainline
- File:
-
- 1 edited
-
kernel/generic/src/main/kinit.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/main/kinit.c
r7e752b2 r2fa10f6 129 129 * For each CPU, create its load balancing thread. 130 130 */ 131 unsigned int i;131 size_t i; 132 132 133 133 for (i = 0; i < config.cpu_count; i++) { … … 139 139 thread_ready(thread); 140 140 } else 141 printf("Unable to create kcpulb thread for cpu %u\n", i);141 printf("Unable to create kcpulb thread for cpu" PRIs "\n", i); 142 142 } 143 143 } … … 179 179 for (i = 0; i < init.cnt; i++) { 180 180 if (init.tasks[i].addr % FRAME_SIZE) { 181 printf("init[% zu].addr is not frame aligned\n", i);181 printf("init[%" PRIs "].addr is not frame aligned\n", i); 182 182 programs[i].task = NULL; 183 183 continue; … … 219 219 220 220 if (rd != RE_OK) 221 printf("Init binary % zunot used (error %d)\n", i, rd);221 printf("Init binary %" PRIs " not used (error %d)\n", i, rd); 222 222 } 223 223 }
Note:
See TracChangeset
for help on using the changeset viewer.
