diff --git a/src/shell/commands/date_cmd.c b/src/shell/commands/date_cmd.c index 28c64e7..449c3f9 100644 --- a/src/shell/commands/date_cmd.c +++ b/src/shell/commands/date_cmd.c @@ -13,7 +13,7 @@ void date_cmd(char *arg) (void)arg; struct rtc_date date = get_date(); - kprintf(0, "%s. %d %s. %d %d:%d:%d\n", week_days[date.index_of_the_day], + kprintf("%s. %d %s. %d %d:%d:%d\n", week_days[date.index_of_the_day], date.day, months[date.month], date.year, date.hour, date.minute, date.second); }