Skip to content

Commit

Permalink
bugfix: wrong function names in call of WRAP_END
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilKoe committed Jan 24, 2024
1 parent ac560a0 commit 2a02ba8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libiotrace/src/posix_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -4102,7 +4102,7 @@ int WRAP(__xstat)(int ver, const char *pathname, struct stat *statbuf)
stat_function_data.allocated_512B_blocks = statbuf->st_blocks;
}

WRAP_END(data, stat)
WRAP_END(data, __xstat)
return ret;
}
#endif
Expand Down Expand Up @@ -4186,7 +4186,7 @@ int WRAP(__fxstat)(int ver, int fd, struct stat *statbuf)
fstat_function_data.allocated_512B_blocks = statbuf->st_blocks;
}

WRAP_END(data, fstat)
WRAP_END(data, __fxstat)
return ret;
}
#endif
Expand Down Expand Up @@ -4271,7 +4271,7 @@ int WRAP(__lxstat)(int ver, const char *pathname, struct stat *statbuf)
stat_function_data.allocated_512B_blocks = statbuf->st_blocks;
}

WRAP_END(data, lstat)
WRAP_END(data, __lxstat)
return ret;
}
# endif
Expand Down Expand Up @@ -4361,7 +4361,7 @@ int WRAP(__fxstatat)(int ver, int dirfd, const char *pathname, struct stat *stat
fstatat_function_data.allocated_512B_blocks = statbuf->st_blocks;
}

WRAP_END(data, fstatat)
WRAP_END(data, __fxstatat)
return ret;
}
# endif
Expand Down

0 comments on commit 2a02ba8

Please sign in to comment.