Skip to content

Commit 0792328

Browse files
Fix include and broken line
1 parent e9b859e commit 0792328

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/csnip/x/clock_gettime.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <time.h>
2+
#include <errno.h>
23

34
#include <csnip/csnip_conf.h>
45
#include <csnip/x.h>
@@ -20,7 +21,7 @@ int x_csnip_clock_gettime_imp(csnip_x_clockid_t clk_id,
2021

2122
/* Didn't succeed; we don't really know why not... */
2223
errno = EINVAL;
23-
return -1
24+
return -1;
2425
}
2526

2627
/* Wrong clk_id */

0 commit comments

Comments
 (0)