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
1d8dbeff
Commit
1d8dbeff
authored
Jan 07, 2009
by
Rob Shearman
Committed by
Alexandre Julliard
Jan 07, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Make the case of messages output by warning and error functions consistent.
Standardise on lower case "warning" and "error", since they match the case of what gcc prints.
parent
ada97dc2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
utils.c
tools/widl/utils.c
+4
-4
No files found.
tools/widl/utils.c
View file @
1d8dbeff
...
...
@@ -71,7 +71,7 @@ void error_loc(const char *s, ...)
loc_info_t
cur_loc
=
CURRENT_LOCATION
;
va_list
ap
;
va_start
(
ap
,
s
);
generic_msg
(
&
cur_loc
,
s
,
"
E
rror"
,
ap
);
generic_msg
(
&
cur_loc
,
s
,
"
e
rror"
,
ap
);
va_end
(
ap
);
exit
(
1
);
}
...
...
@@ -86,7 +86,7 @@ void error_loc_info(const loc_info_t *loc_info, const char *s, ...)
{
va_list
ap
;
va_start
(
ap
,
s
);
generic_msg
(
loc_info
,
s
,
"
E
rror"
,
ap
);
generic_msg
(
loc_info
,
s
,
"
e
rror"
,
ap
);
va_end
(
ap
);
exit
(
1
);
}
...
...
@@ -96,7 +96,7 @@ int parser_warning(const char *s, ...)
loc_info_t
cur_loc
=
CURRENT_LOCATION
;
va_list
ap
;
va_start
(
ap
,
s
);
generic_msg
(
&
cur_loc
,
s
,
"
W
arning"
,
ap
);
generic_msg
(
&
cur_loc
,
s
,
"
w
arning"
,
ap
);
va_end
(
ap
);
return
0
;
}
...
...
@@ -124,7 +124,7 @@ void warning_loc_info(const loc_info_t *loc_info, const char *s, ...)
{
va_list
ap
;
va_start
(
ap
,
s
);
generic_msg
(
loc_info
,
s
,
"
W
arning"
,
ap
);
generic_msg
(
loc_info
,
s
,
"
w
arning"
,
ap
);
va_end
(
ap
);
}
...
...
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