From 974a3fbc44f21b738830e1b031d6d3c7587856ae Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Mon, 23 May 2011 21:15:12 +0100 Subject: [PATCH] Silence warnings due to unused variables. --- retrace.py | 1 + 1 file changed, 1 insertion(+) diff --git a/retrace.py b/retrace.py index 55df6ce..a9c5b4d 100644 --- a/retrace.py +++ b/retrace.py @@ -237,6 +237,7 @@ class Retracer: if function.type is not stdapi.Void: print ' %s __result;' % (function.type) print ' __result = %s(%s);' % (function.name, arg_names) + print ' (void)__result;' else: print ' %s(%s);' % (function.name, arg_names) -- 2.43.0