aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/aiger/aigerparse.cc
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-07-15 08:23:01 -0700
committerEddie Hung <eddie@fpgeh.com>2019-07-15 08:23:01 -0700
commit7129a03083b21c1ed1610126ae28828c56f42369 (patch)
tree03de1a2fe3dceb28b5e840fb5b1da9cbff8dc029 /frontends/aiger/aigerparse.cc
parent44fd459c799e393d13d664102cf381264c80649f (diff)
parenta97d30d2f88d2f7a41abf8b913bbc017b60d8c7d (diff)
downloadyosys-7129a03083b21c1ed1610126ae28828c56f42369.tar.gz
yosys-7129a03083b21c1ed1610126ae28828c56f42369.tar.bz2
yosys-7129a03083b21c1ed1610126ae28828c56f42369.zip
Merge branch 'master' into eddie/fix1178
Diffstat (limited to 'frontends/aiger/aigerparse.cc')
-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);