projects
/
wine
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
820dce1
)
Always initialize header file name, to prevent "#include (null)"
author
Juan Lang
<juan_lang@yahoo.com>
Mon, 18 Apr 2005 16:54:54 +0000
(16:54 +0000)
committer
Alexandre Julliard
<julliard@winehq.org>
Mon, 18 Apr 2005 16:54:54 +0000
(16:54 +0000)
statements in generated files.
tools/widl/widl.c
patch
|
blob
|
blame
|
history
diff --git
a/tools/widl/widl.c
b/tools/widl/widl.c
index
b952b5a
..
fa856fa
100644
(file)
--- a/
tools/widl/widl.c
+++ b/
tools/widl/widl.c
@@
-231,7
+231,7
@@
int main(int argc,char *argv[])
(debuglevel & DEBUGLEVEL_PPTRACE) != 0,
(debuglevel & DEBUGLEVEL_PPMSG) != 0 );
- if (!header_name
&& do_header
) {
+ if (!header_name) {
header_name = dup_basename(input_name, ".idl");
strcat(header_name, ".h");
}