Changeset 7e752b2 in mainline for kernel/generic/src/main/kinit.c
- Timestamp:
- 2010-11-26T01:33:20Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bf61d3a
- Parents:
- 202f57b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/main/kinit.c
r202f57b r7e752b2 129 129 * For each CPU, create its load balancing thread. 130 130 */ 131 size_t i;131 unsigned int 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 " PRIs "\n", i);141 printf("Unable to create kcpulb thread for cpu%u\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[% " PRIs "].addr is not frame aligned\n", i);181 printf("init[%zu].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 % " PRIs "not used (error %d)\n", i, rd);221 printf("Init binary %zu not used (error %d)\n", i, rd); 222 222 } 223 223 }
Note:
See TracChangeset
for help on using the changeset viewer.