summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tapset/ChangeLog4
-rw-r--r--tapset/aux_syscalls.stp2
2 files changed, 5 insertions, 1 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog
index 9c05f71b..03ffb87b 100644
--- a/tapset/ChangeLog
+++ b/tapset/ChangeLog
@@ -1,3 +1,7 @@
+2006-04-21 Frank Ch. Eigler <fche@elastic.org>
+
+ * aux_syscalls.stp (_fildes_u): Declare return value type.
+
2006-04-18 Frank Ch. Eigler <fche@elastic.org>
* conversions.stp (string, hex_string): Use snprintf for safety.
diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp
index aa480883..3bfe6285 100644
--- a/tapset/aux_syscalls.stp
+++ b/tapset/aux_syscalls.stp
@@ -323,7 +323,7 @@ function _struct_rlimit_u:string(uaddr:long)
}
%}
-function _fildes_u(uaddr:long)
+function _fildes_u:string (uaddr:long)
%{
int fd[2];
char *ptr = (char *)(unsigned long)THIS->uaddr;