Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
dc28c6c6
Commit
dc28c6c6
authored
Jul 10, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(p{fatal,error}_with_name, perror_exec): Quote filename.
From-SVN: r10108
parent
30de452f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
gcc/gcc.c
+5
-4
No files found.
gcc/gcc.c
View file @
dc28c6c6
...
...
@@ -4756,7 +4756,7 @@ pfatal_with_name (name)
if
(
errno
<
sys_nerr
)
s
=
concat
(
"%s: "
,
my_strerror
(
errno
));
else
s
=
"cannot open
%s
"
;
s
=
"cannot open
`%s'
"
;
fatal
(
s
,
name
);
}
...
...
@@ -4769,7 +4769,7 @@ perror_with_name (name)
if
(
errno
<
sys_nerr
)
s
=
concat
(
"%s: "
,
my_strerror
(
errno
));
else
s
=
"cannot open
%s
"
;
s
=
"cannot open
`%s'
"
;
error
(
s
,
name
);
}
...
...
@@ -4780,9 +4780,10 @@ perror_exec (name)
char
*
s
;
if
(
errno
<
sys_nerr
)
s
=
concat
(
"installation problem, cannot exec %s: "
,
my_strerror
(
errno
));
s
=
concat
(
"installation problem, cannot exec `%s': "
,
my_strerror
(
errno
));
else
s
=
"installation problem, cannot exec
%s
"
;
s
=
"installation problem, cannot exec
`%s'
"
;
error
(
s
,
name
);
}
...
...
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