From 6a126482c498f3f75f1e14df238647e94f6fd47c Mon Sep 17 00:00:00 2001 From: Serguei Makarov Date: Wed, 26 Sep 2012 15:24:25 -0400 Subject: [PATCH] Typo fix for earlier probe_type enum commit (commit cda141c). --- tapset/linux/context.stp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tapset/linux/context.stp b/tapset/linux/context.stp index 551d009cb..6faf861ac 100644 --- a/tapset/linux/context.stp +++ b/tapset/linux/context.stp @@ -243,7 +243,7 @@ function user_mode:long () function is_return:long () %{ /* pure */ if (CONTEXT->probe_type == stp_probe_type_kretprobe - || CONTEXT->probe_type == stp_probe_handler_uretprobe) + || CONTEXT->probe_type == stp_probe_type_uretprobe) STAP_RETVALUE = 1; else STAP_RETVALUE = 0; -- 2.43.5