From 3676b4e7971a10c95bf35c643d7610bc07b96c52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Fri, 17 Apr 2015 23:04:45 +0200 Subject: [PATCH] Fix warning reported by MSVC --- src/_frida.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/_frida.c b/src/_frida.c index d727377..6f7d86a 100644 --- a/src/_frida.c +++ b/src/_frida.c @@ -1213,6 +1213,8 @@ PySession_disable_debugger (PySession * self, PyObject * args) { GError * error = NULL; + (void) args; + Py_BEGIN_ALLOW_THREADS frida_session_disable_debugger_sync (self->handle, &error); Py_END_ALLOW_THREADS