* quota.c (SYS_FUNC(quotactl)): Replace disjunction of two xlat values
  (which also lacks shift of left part) with a macro call.
---
 quota.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/quota.c b/quota.c
index 0a388b2..9f18c0d 100644
--- a/quota.c
+++ b/quota.c
@@ -520,10 +520,11 @@ SYS_FUNC(quotactl)
        uint32_t id = tcp->u_arg[2];
 
        if (entering(tcp)) {
+               tprints("QCMD(");
                printxval(quotacmds, cmd, "Q_???");
-               tprints("|");
-               printxval(quotatypes, type, "???QUOTA");
                tprints(", ");
+               printxval(quotatypes, type, "???QUOTA");
+               tprints("), ");
                printpath(tcp, tcp->u_arg[1]);
                tprints(", ");
                switch (cmd) {
-- 
1.7.10.4


------------------------------------------------------------------------------
_______________________________________________
Strace-devel mailing list
Strace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/strace-devel

Reply via email to