diff --git a/src/kernel/libroot/os/time.c b/src/kernel/libroot/os/time.c index 57b2dd252b..5de2fb9b8a 100644 --- a/src/kernel/libroot/os/time.c +++ b/src/kernel/libroot/os/time.c @@ -31,7 +31,8 @@ setup_rtc_boottime() printf("setup_rtc_boottime: error getting real time data info\n"); return err; } - sBootTime = &((struct real_time_data *)info.address)->boot_time; + + sBootTime = &(((struct real_time_data *)info.address)->boot_time); return B_OK; }