Skip to content

Commit c8a7ba0

Browse files
committed
Minor fix.
1 parent 816e571 commit c8a7ba0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/unix_macro.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ int c_fprintf(FILE *, const char *, const char *);
1818
int c_ioctl(int, unsigned long, void *);
1919
int c_open(const char *, int, mode_t);
2020
int c_scanf(const char *, const char *);
21-
int uname(struct utsname *);
21+
int c_uname(struct utsname *);
2222
void c_syslog(int, const char *, const char *);
2323

2424
/*******************************************************************************

src/unix_utsname.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module unix_utsname
3737
! int uname(struct utsname *name)
3838
function c_uname(name) bind(c, name='c_uname')
3939
!! Calls wrapper `c_uname()` in `unix_macro.c`, as it is an inline
40-
!! function on FreeBSD, alternatively to callling `__xuname()`.
40+
!! function on FreeBSD, alternatively to calling `__xuname()`.
4141
import :: c_int, c_utsname
4242
implicit none
4343
type(c_utsname), intent(inout) :: name

0 commit comments

Comments
 (0)