From 55c95a829928ae9f053678a58a2145276cad9c08 Mon Sep 17 00:00:00 2001
From: midipix <writeonce@midipix.org>
Date: Wed, 6 Apr 2016 20:35:43 -0400
Subject: source quality: remove empty statement.

of the three compilers in use (gcc 5.3.0, clang 3.6.2, cparser 1.22.1),
flaws in the previous version of this function were only spotted by cparser.
---
 src/logic/slbt_exec_compile.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src/logic')

diff --git a/src/logic/slbt_exec_compile.c b/src/logic/slbt_exec_compile.c
index 9a68673..7f6b9b8 100644
--- a/src/logic/slbt_exec_compile.c
+++ b/src/logic/slbt_exec_compile.c
@@ -79,7 +79,7 @@ int  slbt_exec_compile(
 
 		*ectx->cass = "-c";
 		*ectx->lout[0] = "-o";
-		*ectx->lout[1] = ectx->aobjname;;
+		*ectx->lout[1] = ectx->aobjname;
 
 		if (!(dctx->cctx->drvflags & SLBT_DRIVER_SILENT)) {
 			if (slbt_output_compile(dctx,ectx)) {
-- 
cgit v1.2.3