projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9112850
)
Fix missing semicolon in Windows-specific code in aigerparse.cc.
author
William D. Jones
<thor0505@comcast.net>
Sun, 14 Jul 2019 15:57:08 +0000
(11:57 -0400)
committer
William D. Jones
<thor0505@comcast.net>
Sun, 14 Jul 2019 17:52:27 +0000
(13:52 -0400)
Signed-off-by: William D. Jones <thor0505@comcast.net>
frontends/aiger/aigerparse.cc
patch
|
blob
|
history
diff --git
a/frontends/aiger/aigerparse.cc
b/frontends/aiger/aigerparse.cc
index 1ac0f7ba465cc87fa735ba31c95e61a56d7384eb..03c541b7cf4bd85d61810b51cd468a0bd3355a3e 100644
(file)
--- 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);