From 2a02ba8612b09072365e5395e14ccac777606217 Mon Sep 17 00:00:00 2001 From: PhilKoe Date: Wed, 24 Jan 2024 14:09:35 +0100 Subject: [PATCH] bugfix: wrong function names in call of WRAP_END --- libiotrace/src/posix_io.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libiotrace/src/posix_io.c b/libiotrace/src/posix_io.c index 12adf6d..c1c5d89 100644 --- a/libiotrace/src/posix_io.c +++ b/libiotrace/src/posix_io.c @@ -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 @@ -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 @@ -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 @@ -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