Skip to content

Commit 18f5c8a

Browse files
Sergey Fedoroveregon
authored andcommitted
Add semicolon to the buffer atime assignment
1 parent e734372 commit 18f5c8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/c/truffleposix/truffleposix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ static void copy_stat(struct stat *native_stat, struct truffleposix_stat* buffer
467467
#elif defined(HAVE_STRUCT_STAT_ST_ATIMENSEC)
468468
buffer->atime_nsec = (long)native_stat->st_atimensec;
469469
#else
470-
buffer->atime_nsec = 0
470+
buffer->atime_nsec = 0;
471471
#endif
472472
#if defined(HAVE_STRUCT_STAT_ST_MTIM)
473473
buffer->mtime_nsec = native_stat->st_mtim.tv_nsec;

0 commit comments

Comments
 (0)