summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfche <fche>2006-04-21 19:35:19 +0000
committerfche <fche>2006-04-21 19:35:19 +0000
commitf9db95d019b4936d62c9b3e021aecc2dfb653dcf (patch)
tree6902779b80b9b27e2e1fb434600413927fbf0ec0
parenta1fd400580312a30697f02aa18e5695932b7d1d8 (diff)
downloadsystemtap-steved-f9db95d019b4936d62c9b3e021aecc2dfb653dcf.tar.gz
systemtap-steved-f9db95d019b4936d62c9b3e021aecc2dfb653dcf.tar.xz
systemtap-steved-f9db95d019b4936d62c9b3e021aecc2dfb653dcf.zip
2006-04-21 Frank Ch. Eigler <fche@elastic.org>
* aux_syscalls.stp (_fildes_u): Declare return value type.
-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;