diff options
author | William D. Jones <thor0505@comcast.net> | 2019-07-14 11:57:08 -0400 |
---|---|---|
committer | William D. Jones <thor0505@comcast.net> | 2019-07-14 13:52:27 -0400 |
commit | da5d64d71e27a1ee182f7c50f240e0adc91a5a07 (patch) | |
tree | 527c54c5d4e81b2a958f793d5d3c8c3b64368529 /frontends | |
parent | 9112850800a92ed0e330d8470e1273116d78ba14 (diff) | |
download | yosys-da5d64d71e27a1ee182f7c50f240e0adc91a5a07.tar.gz yosys-da5d64d71e27a1ee182f7c50f240e0adc91a5a07.tar.bz2 yosys-da5d64d71e27a1ee182f7c50f240e0adc91a5a07.zip |
Fix missing semicolon in Windows-specific code in aigerparse.cc.
Signed-off-by: William D. Jones <thor0505@comcast.net>
Diffstat (limited to 'frontends')
-rw-r--r-- | frontends/aiger/aigerparse.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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); |