Skip to content

Commit

Permalink
stress-open: remove inline from two helper functions
Browse files Browse the repository at this point in the history
Signed-off-by: Colin Ian King <[email protected]>
  • Loading branch information
ColinIanKing committed Jun 6, 2022
1 parent 12a5135 commit 07036bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stress-open.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ static const stress_opt_set_func_t opt_set_funcs[] = {
* obsolete_futimesat()
* modern libc maps the obsolete futimesat to utimesat
*/
static inline int obsolete_futimesat(
static int obsolete_futimesat(
const int dir_fd,
const char *pathname,
const struct timeval tv[2])
Expand Down Expand Up @@ -197,7 +197,7 @@ static inline int obsolete_futimesat(
* obsolete_futimes()
* modern libc maps the obsolete futimes to utimes
*/
static inline int obsolete_futimes(const int fd, const struct timeval tv[2])
static int obsolete_futimes(const int fd, const struct timeval tv[2])
{
int ret;

Expand Down

0 comments on commit 07036bd

Please sign in to comment.