Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
103249ec
Commit
103249ec
authored
May 01, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebrowser: Don't output debug traces by default.
parent
1104dc08
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
main.c
programs/winebrowser/main.c
+6
-4
No files found.
programs/winebrowser/main.c
View file @
103249ec
...
...
@@ -45,6 +45,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
winebrowser
);
typedef
LPSTR
(
*
wine_get_unix_file_name_t
)(
LPCWSTR
unixname
);
...
...
@@ -61,8 +64,8 @@ static int launch_app( char *candidates, const char *argv1 )
argv_new
[
1
]
=
argv1
;
argv_new
[
2
]
=
NULL
;
fprintf
(
stderr
,
"Considering: %s
\n
"
,
app
);
fprintf
(
stderr
,
"argv[1]: %s
\n
"
,
argv1
);
WINE_TRACE
(
"Considering: %s
\n
"
,
app
);
WINE_TRACE
(
"argv[1]: %s
\n
"
,
argv1
);
spawnvp
(
_P_OVERLAY
,
app
,
argv_new
);
/* only returns on error */
app
=
strtok
(
NULL
,
","
);
/* grab the next app */
...
...
@@ -173,8 +176,7 @@ int main(int argc, char *argv[])
if
(
wine_get_unix_file_name_ptr
==
NULL
)
{
fprintf
(
stderr
,
"winebrowser: cannot get the address of 'wine_get_unix_file_name'
\n
"
);
WINE_ERR
(
"cannot get the address of 'wine_get_unix_file_name'
\n
"
);
}
else
{
...
...
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