summaryrefslogtreecommitdiff
path: root/src/internal/slibtool_errinfo_impl.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2020-12-20 23:09:31 +0000
committermidipix <writeonce@midipix.org>2020-12-20 23:09:31 +0000
commit6beda1bcee4396ceced99b8a8c5627940f507ace (patch)
tree9f4d796da9415af666aa8485b653e21a6cb4d6e2 /src/internal/slibtool_errinfo_impl.h
parent56f236d413d8aa5e0c875f0926f0c6dd9fb1d7d0 (diff)
downloadslibtool-6beda1bcee4396ceced99b8a8c5627940f507ace.tar.bz2
slibtool-6beda1bcee4396ceced99b8a8c5627940f507ace.tar.xz
internals: error tracing: record the not-found path upon ENOENT as needed.
Diffstat (limited to 'src/internal/slibtool_errinfo_impl.h')
-rw-r--r--src/internal/slibtool_errinfo_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/internal/slibtool_errinfo_impl.h b/src/internal/slibtool_errinfo_impl.h
index a1d3b61..1c3fb9f 100644
--- a/src/internal/slibtool_errinfo_impl.h
+++ b/src/internal/slibtool_errinfo_impl.h
@@ -19,7 +19,7 @@ int slbt_record_error(
unsigned eflags,
void * eany);
-#define SLBT_SYSTEM_ERROR(dctx) \
+#define SLBT_SYSTEM_ERROR(dctx,eany) \
slbt_record_error( \
dctx, \
errno, \
@@ -27,7 +27,7 @@ int slbt_record_error(
__func__, \
__LINE__, \
SLBT_ERROR_TOP_LEVEL, \
- 0)
+ (void *)eany)
#define SLBT_BUFFER_ERROR(dctx) \
slbt_record_error( \