summaryrefslogtreecommitdiffstats
path: root/linux
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2023-12-17 13:23:51 +0100
committerMattias Andrée <maandree@kth.se>2023-12-17 13:23:51 +0100
commit2e7b4df9f7dfd6a4a6796cd2fcee010ea78427ea (patch)
treea321a6a0b4bc93cbc1b7704239a675c490383b6d /linux
parentTell the user whether signals and errors are signed or unsigned (diff)
downloadlibsyscalls-master.tar.gz
libsyscalls-master.tar.bz2
libsyscalls-master.tar.xz
Miscellaneous improvementsHEADmaster
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'linux')
-rw-r--r--linux/symbols.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/symbols.c b/linux/symbols.c
index cbfb661..5cc848d 100644
--- a/linux/symbols.c
+++ b/linux/symbols.c
@@ -275,7 +275,7 @@ get_linux_syscall_display_info(enum libsyscalls_arch arch, const struct libsysca
{
LIBSYSCALLS_SYMBOL_PRINTER_DATA *data;
libsyscalls_symbol_printer_function **funcs;
- int i, nargs, nsyms;
+ size_t i, nargs, nsyms;
size_t data_size = offsetof(LIBSYSCALLS_SYMBOL_PRINTER_DATA, buf);
size_t data_align = alignof(LIBSYSCALLS_SYMBOL_PRINTER_DATA);
size_t bufspace, bufspace1, bufspace2;