summaryrefslogtreecommitdiff
path: root/regress/lib/libpthread/pthread_kill
diff options
context:
space:
mode:
authorMarco S Hyman <marc@cvs.openbsd.org>2002-10-23 22:30:05 +0000
committerMarco S Hyman <marc@cvs.openbsd.org>2002-10-23 22:30:05 +0000
commitfe01e95defd22028a1e02de3a2288315c00416b3 (patch)
tree53f24b26c8a2d505e2dda93d1c6b34aa30313a2e /regress/lib/libpthread/pthread_kill
parentf81bde9c9f37438222283cf5022f7455721708be (diff)
remove 0x in front of %p -- not needed
Diffstat (limited to 'regress/lib/libpthread/pthread_kill')
-rw-r--r--regress/lib/libpthread/pthread_kill/pthread_kill.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libpthread/pthread_kill/pthread_kill.c b/regress/lib/libpthread/pthread_kill/pthread_kill.c
index 697d00767b0..b0457a2dfb1 100644
--- a/regress/lib/libpthread/pthread_kill/pthread_kill.c
+++ b/regress/lib/libpthread/pthread_kill/pthread_kill.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pthread_kill.c,v 1.1 2002/10/21 18:44:11 marc Exp $ */
+/* $OpenBSD: pthread_kill.c,v 1.2 2002/10/23 22:30:04 marc Exp $ */
/* PUBLIC DOMAIN Oct 2002 <marc@snafu.org> */
/*
@@ -22,7 +22,7 @@ act_handler(int signal, siginfo_t *siginfo, void *context)
CHECKe(sigaction(SIGUSR1, NULL, &sa));
ASSERT(sa.sa_handler == SIG_DFL);
ASSERT(siginfo != NULL);
- asprintf(&str, "act_handler: signal %d, siginfo 0x%p, context 0x%p\n",
+ asprintf(&str, "act_handler: signal %d, siginfo %p, context %p\n",
signal, siginfo, context);
write(STDOUT_FILENO, str, strlen(str));
}