diff options
Diffstat (limited to 'testsuite/systemtap.syscall/pipe.c')
-rw-r--r-- | testsuite/systemtap.syscall/pipe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/systemtap.syscall/pipe.c b/testsuite/systemtap.syscall/pipe.c index 36e86e9f..8eea2910 100644 --- a/testsuite/systemtap.syscall/pipe.c +++ b/testsuite/systemtap.syscall/pipe.c @@ -9,11 +9,11 @@ int main() { int pipefd[2]; - pipefd[0] = 42; - pipefd[1] = 13; + pipefd[0] = 0; + pipefd[1] = 0; pipe (pipefd); - //staptest// pipe (\[42, 13\]) = 0 + //staptest// pipe (\[0, 0\]) = 0 #ifdef O_CLOEXEC pipe2 (pipefd, O_CLOEXEC); |