aboutsummaryrefslogtreecommitdiff
path: root/pathtrace.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-02-16 13:22:38 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-02-16 13:22:38 +0100
commit5721cdbcdba76eef854a30e7e56e328eae976e44 (patch)
treef351c5cc5069ccb70d0a7743f318e8377b3e5d7b /pathtrace.c
parent48e4c1bf4dcfa9730c4ac4fc9b8d115569ef389b (diff)
downloadstrace-5721cdbcdba76eef854a30e7e56e328eae976e44.tar.gz
Mass rename of SCNO_IN_RANGE define to SCNO_IS_VALID
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'pathtrace.c')
-rw-r--r--pathtrace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pathtrace.c b/pathtrace.c
index 12e47e90..1a7d1db0 100644
--- a/pathtrace.c
+++ b/pathtrace.c
@@ -162,7 +162,7 @@ pathtrace_match(struct tcb *tcp)
if (selected[0] == NULL)
return 1;
- if (!SCNO_IN_RANGE(tcp->scno))
+ if (!SCNO_IS_VALID(tcp->scno))
return 0;
s = &sysent[tcp->scno];