Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9e15a420
Commit
9e15a420
authored
Jan 05, 2005
by
Huw Davies
Committed by
Alexandre Julliard
Jan 05, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bring the debug functions into line with the rest of Wine by not
appending a '\n'.
parent
b5e4d1a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
+4
-8
utils.c
tools/widl/utils.c
+3
-7
widl.c
tools/widl/widl.c
+1
-1
No files found.
tools/widl/utils.c
View file @
9e15a420
...
...
@@ -93,7 +93,6 @@ void internal_error(const char *file, int line, const char *s, ...)
va_start
(
ap
,
s
);
fprintf
(
stderr
,
"Internal error (please report) %s %d: "
,
file
,
line
);
vfprintf
(
stderr
,
s
,
ap
);
fprintf
(
stderr
,
"
\n
"
);
va_end
(
ap
);
exit
(
3
);
}
...
...
@@ -102,9 +101,8 @@ void error(const char *s, ...)
{
va_list
ap
;
va_start
(
ap
,
s
);
fprintf
(
stderr
,
"
E
rror: "
);
fprintf
(
stderr
,
"
e
rror: "
);
vfprintf
(
stderr
,
s
,
ap
);
fprintf
(
stderr
,
"
\n
"
);
va_end
(
ap
);
exit
(
2
);
}
...
...
@@ -113,9 +111,8 @@ void warning(const char *s, ...)
{
va_list
ap
;
va_start
(
ap
,
s
);
fprintf
(
stderr
,
"
W
arning: "
);
fprintf
(
stderr
,
"
w
arning: "
);
vfprintf
(
stderr
,
s
,
ap
);
fprintf
(
stderr
,
"
\n
"
);
va_end
(
ap
);
}
...
...
@@ -125,9 +122,8 @@ void chat(const char *s, ...)
{
va_list
ap
;
va_start
(
ap
,
s
);
fprintf
(
stderr
,
"
FYI
: "
);
fprintf
(
stderr
,
"
chat
: "
);
vfprintf
(
stderr
,
s
,
ap
);
fprintf
(
stderr
,
"
\n
"
);
va_end
(
ap
);
}
}
...
...
tools/widl/widl.c
View file @
9e15a420
...
...
@@ -222,7 +222,7 @@ int main(int argc,char *argv[])
atexit
(
rm_tempfile
);
if
(
!
no_preprocess
)
{
chat
(
"Starting preprocess"
);
chat
(
"Starting preprocess
\n
"
);
if
(
!
preprocess_only
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment