From 7bad53a1bc66e7f1785709c7cc607a6ad7943a3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Wed, 17 Nov 2004 00:22:54 +0000 Subject: [PATCH] better parenthesis git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9978 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/libroot/os/time.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; }