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);