From: William D. Jones Date: Sun, 14 Jul 2019 15:57:08 +0000 (-0400) Subject: Fix missing semicolon in Windows-specific code in aigerparse.cc. X-Git-Tag: working-ls180~1200^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=da5d64d71e27a1ee182f7c50f240e0adc91a5a07;p=yosys.git Fix missing semicolon in Windows-specific code in aigerparse.cc. Signed-off-by: William D. Jones --- diff --git a/frontends/aiger/aigerparse.cc b/frontends/aiger/aigerparse.cc index 1ac0f7ba4..03c541b7c 100644 --- a/frontends/aiger/aigerparse.cc +++ b/frontends/aiger/aigerparse.cc @@ -1062,8 +1062,8 @@ struct AigerFrontend : public Frontend { if (module_name.empty()) { #ifdef _WIN32 char fname[_MAX_FNAME]; - _splitpath(filename.c_str(), NULL /* drive */, NULL /* dir */, fname, NULL /* ext */) - module_name = fname; + _splitpath(filename.c_str(), NULL /* drive */, NULL /* dir */, fname, NULL /* ext */); + module_name = fname; #else char* bn = strdup(filename.c_str()); module_name = RTLIL::escape_id(bn);