diff options
author | midipix <writeonce@midipix.org> | 2016-04-06 20:35:43 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-04-06 20:37:50 -0400 |
commit | 55c95a829928ae9f053678a58a2145276cad9c08 (patch) | |
tree | 02dcb6055f44775e80006c827f175d624dcae0aa | |
parent | 14ef986fc486bd0d3590bc8262ebe8bfb8ee69a8 (diff) | |
download | slibtool-55c95a829928ae9f053678a58a2145276cad9c08.tar.bz2 slibtool-55c95a829928ae9f053678a58a2145276cad9c08.tar.xz |
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.
-rw-r--r-- | src/logic/slbt_exec_compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)) { |