summaryrefslogtreecommitdiff
path: root/bjm.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>2005-06-01 18:55:42 +0000
committerRoland McGrath <roland@redhat.com>2005-06-01 18:55:42 +0000
commit46100d07257824da2ae1147da0324b5788c95501 (patch)
treeda94b95631e8e412eded4fac13b6a36e50b1e7dc /bjm.c
parente776e3e4cbf675f33d2661c58d2442d6d6be9566 (diff)
downloadstrace-46100d07257824da2ae1147da0324b5788c95501.tar.gz
strace-46100d07257824da2ae1147da0324b5788c95501.tar.bz2
strace-46100d07257824da2ae1147da0324b5788c95501.tar.xz
2005-05-31 Dmitry V. Levin <ldv@altlinux.org>
* bjm.c (sys_query_module) [LINUX]: Unitize "out of memory" errors reporting style. * strace.c (rebuild_pollv) [USE_PROCFS]: Likewise. * system.c (sys_capget, sys_capset) [SYS_capget]: Likewise. * util.c (printstr): Likewise. (dumpiov) [HAVE_SYS_UIO_H]: Likewise. (fixvfork) [SUNOS4]: Likewise. * desc.c (decode_select): Continue to decode syscall arguments in case of OOM condition. * file.c (sys_getdents): Likewise. (sys_getdents64) [_LFS64_LARGEFILE]: Likewise. (sys_getdirentries) [FREEBSD]: Likewise. * mem.c (sys_mincore): Changed type of variables which deal with malloc size from int to unsigned long. Fixes RH#159308.
Diffstat (limited to 'bjm.c')
-rw-r--r--bjm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bjm.c b/bjm.c
index 2bd0279..301ac40 100644
--- a/bjm.c
+++ b/bjm.c
@@ -136,7 +136,7 @@ struct tcb *tcp;
size_t idx;
if (data==NULL) {
- fprintf(stderr, "sys_query_module: No memory\n");
+ fprintf(stderr, "out of memory\n");
tprintf(" /* %Zu entries */ ", ret);
} else {
umoven(tcp, tcp->u_arg[2], tcp->u_arg[3], data);
@@ -161,7 +161,7 @@ struct tcb *tcp;
size_t idx;
if (data==NULL) {
- fprintf(stderr, "sys_query_module: No memory\n");
+ fprintf(stderr, "out of memory\n");
tprintf(" /* %Zu entries */ ", ret);
} else {
umoven(tcp, tcp->u_arg[2], tcp->u_arg[3], data);