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
dd732232
Commit
dd732232
authored
Nov 29, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Remove trailing \n in fatal_perror() calls.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4dc4bab9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
server.c
dlls/ntdll/server.c
+3
-3
No files found.
dlls/ntdll/server.c
View file @
dd732232
...
...
@@ -1139,7 +1139,7 @@ static int setup_config_dir(void)
if
(
chdir
(
config_dir
)
==
-
1
)
{
if
(
errno
!=
ENOENT
)
fatal_perror
(
"chdir to %s
\n
"
,
config_dir
);
if
(
errno
!=
ENOENT
)
fatal_perror
(
"chdir to %s"
,
config_dir
);
if
((
p
=
strrchr
(
config_dir
,
'/'
))
&&
p
!=
config_dir
)
{
...
...
@@ -1156,7 +1156,7 @@ static int setup_config_dir(void)
}
mkdir
(
config_dir
,
0777
);
if
(
chdir
(
config_dir
)
==
-
1
)
fatal_perror
(
"chdir to %s
\n
"
,
config_dir
);
if
(
chdir
(
config_dir
)
==
-
1
)
fatal_perror
(
"chdir to %s"
,
config_dir
);
MESSAGE
(
"wine: created the configuration directory '%s'
\n
"
,
config_dir
);
}
...
...
@@ -1164,7 +1164,7 @@ static int setup_config_dir(void)
if
(
mkdir
(
"dosdevices"
,
0777
)
==
-
1
)
{
if
(
errno
==
EEXIST
)
goto
done
;
fatal_perror
(
"cannot create %s/dosdevices
\n
"
,
config_dir
);
fatal_perror
(
"cannot create %s/dosdevices"
,
config_dir
);
}
/* create the drive symlinks */
...
...
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