From 2fe70f8abfb0cee1b20cae6ebb8ea67260f1be68 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ren=C3=A9=20He=C3=9F?= <rene.hess@iwr.uni-heidelberg.de>
Date: Mon, 18 Feb 2019 16:23:18 +0100
Subject: [PATCH] [Bugfix] Fix typo

---
 python/dune/codegen/sumfact/autotune.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/dune/codegen/sumfact/autotune.py b/python/dune/codegen/sumfact/autotune.py
index 9f8dcdb1..e7a31f13 100644
--- a/python/dune/codegen/sumfact/autotune.py
+++ b/python/dune/codegen/sumfact/autotune.py
@@ -210,7 +210,7 @@ def generate_standalone_code_google_benchmark(sf, filename):
         arguments = ', '.join(sf.interface.signature_args)
         if len(arguments) > 0:
             arguments = ', ' + arguments
-        arguments = 'const char* buffer0, const char* buffer 1' + arguments
+        arguments = 'const char* buffer0, const char* buffer1' + arguments
         f.write("void sumfact_kernel({})\n".format(arguments))
         for line in knl.member.lines[1:]:
             f.write("{}\n".format(line))
-- 
GitLab