aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/aiger
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-07-15 09:49:41 -0700
committerEddie Hung <eddie@fpgeh.com>2019-07-15 09:49:41 -0700
commit146451a767bc0ba77da86bdb8ebec5d3387b49ca (patch)
tree4477f092c352de034fef1a315a542778185d90ce /frontends/aiger
parentb33ecd2a746b734fda33d8535afecf76bd35f59c (diff)
parenta97d30d2f88d2f7a41abf8b913bbc017b60d8c7d (diff)
downloadyosys-146451a767bc0ba77da86bdb8ebec5d3387b49ca.tar.gz
yosys-146451a767bc0ba77da86bdb8ebec5d3387b49ca.tar.bz2
yosys-146451a767bc0ba77da86bdb8ebec5d3387b49ca.zip
Merge remote-tracking branch 'origin/master' into xc7dsp
Diffstat (limited to 'frontends/aiger')
-rw-r--r--frontends/aiger/aigerparse.cc4
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);