summaryrefslogtreecommitdiff
path: root/Include/pydtrace.h
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-09 17:46:24 -0700
committerBenjamin Peterson <benjamin@python.org>2016-09-09 17:46:24 -0700
commitdec2df3df321c3d6bed045d3125564006942b3d9 (patch)
treec469062d58641de4cb52859f9b8754cce4132e2e /Include/pydtrace.h
parenta785c87d6eacbed81543a8afe3cb098fabb9610a (diff)
downloadcpython-git-dec2df3df321c3d6bed045d3125564006942b3d9.tar.gz
fix dummy macro
Diffstat (limited to 'Include/pydtrace.h')
-rw-r--r--Include/pydtrace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pydtrace.h b/Include/pydtrace.h
index 4c06d0ef79..a033772470 100644
--- a/Include/pydtrace.h
+++ b/Include/pydtrace.h
@@ -22,7 +22,7 @@
/* Without DTrace, compile to nothing. */
-#define PyDTrace_LINE(arg0, arg1, arg2, arg3) do ; while (0)
+#define PyDTrace_LINE(arg0, arg1, arg2) do ; while (0)
#define PyDTrace_FUNCTION_ENTRY(arg0, arg1, arg2) do ; while (0)
#define PyDTrace_FUNCTION_RETURN(arg0, arg1, arg2) do ; while (0)
#define PyDTrace_GC_START(arg0) do ; while (0)