From 6e1f5366351f82962e3ca3c329690332daa0f707 Mon Sep 17 00:00:00 2001 From: Sparchatus Date: Wed, 23 Mar 2022 15:27:31 +0000 Subject: [PATCH] Oups --- usr/hello/hello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/hello/hello.c b/usr/hello/hello.c index 83683c4..9827006 100644 --- a/usr/hello/hello.c +++ b/usr/hello/hello.c @@ -27,7 +27,7 @@ int main(int argc, char *argv[]) struct timespec tt; if (clock_gettime(CLOCK_REALTIME, &tt) < 0) return 1; - double time = tt.tv_sec + tt.tv_nsec / 1000000000.0;\ + double time = tt.tv_sec + tt.tv_nsec / 1000000000.0; printf("Hello, world! I am %lfs\n", time);