diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2014-04-25 23:39:20 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2014-05-30 21:39:04 +0000 |
commit | 297b59401c998a2154b2fd1af7b234e2fa3a9305 (patch) | |
tree | c840158434f8461b4dae36d06d17bde2c0f583b1 /bjm.c | |
parent | 5153b5cd681a4091d378883d06291b5bcb963e69 (diff) | |
download | strace-297b59401c998a2154b2fd1af7b234e2fa3a9305.tar.gz |
Rename several xlat structures to avoid collisions
* bjm.c (which): Rename to qm_which.
* ipc.c (msg_flags): Rename to ipc_msg_flags.
* time.c (which): Rename to itimer_which.
Diffstat (limited to 'bjm.c')
-rw-r--r-- | bjm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -69,7 +69,7 @@ struct module_info long usecount; }; -static const struct xlat which[] = { +static const struct xlat qm_which[] = { XLAT(0), XLAT(QM_MODULES), XLAT(QM_DEPS), @@ -96,7 +96,7 @@ sys_query_module(struct tcb *tcp) if (entering(tcp)) { printstr(tcp, tcp->u_arg[0], -1); tprints(", "); - printxval(which, tcp->u_arg[1], "QM_???"); + printxval(qm_which, tcp->u_arg[1], "QM_???"); tprints(", "); } else { size_t ret; |