From: Marek Olšák Date: Thu, 20 Feb 2020 23:10:37 +0000 (-0500) Subject: glthread: don't insert an empty line after (void) cmd; X-Git-Tag: upstream/20.1.8~2802 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4970199d11907833858bbb2700ba313ae12f3a95;p=platform%2Fupstream%2Fmesa.git glthread: don't insert an empty line after (void) cmd; Reviewed-by: Timothy Arceri Part-of: --- diff --git a/src/mapi/glapi/gen/gl_marshal.py b/src/mapi/glapi/gen/gl_marshal.py index a421c95d..8e918a0 100644 --- a/src/mapi/glapi/gen/gl_marshal.py +++ b/src/mapi/glapi/gen/gl_marshal.py @@ -130,7 +130,7 @@ class PrintCode(gl_XML.gl_print_base): i += 1 if not func.fixed_params and not func.variable_params: - out('(void) cmd;\n') + out('(void) cmd;') # Uncomment this if you want to call _mesa_glthread_finish for debugging #out('_mesa_glthread_finish(ctx);')