Skip to content

Commit 383c3e5

Browse files
committed
dummy
Signed-off-by: Anas Nashif <[email protected]>
1 parent 2d1e440 commit 383c3e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kernel/init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ static char **prepare_main_args(int *argc)
480480
if (strings_end < (char *)argv_begin) {
481481
*strings_end++ = '\0';
482482
} else {
483-
LOG_WRN("not enough space in args buffer to accommodate all bootargs"
483+
LOG_ERR("not enough space in args buffer to accommodate all bootargs"
484484
" - bootargs truncated");
485485
argv_begin[*argc] = NULL;
486486
return argv_begin;

kernel/timeout.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ k_ticks_t z_add_timeout(struct _timeout *to, _timeout_func_t fn, k_timeout_t tim
151151
*/
152152
ticks_elapsed = elapsed();
153153
}
154-
sys_clock_set_timeout(next_timeout(ticks_elapsed), false);
154+
sys_clock_set_timeout(next_timeout(ticks_elapsed), false );
155155
}
156156
}
157157

0 commit comments

Comments
 (0)