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
21789816
Commit
21789816
authored
Jul 08, 2003
by
Neil Booth
Committed by
Neil Booth
Jul 08, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* opts.c (wrap_help): Use unsigned int, not size_t.
From-SVN: r69106
parent
e55dc371
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/opts.c
+3
-3
No files found.
gcc/ChangeLog
View file @
21789816
2003-07-08 Neil Booth <neil@daikokuya.co.uk>
* opts.c (wrap_help): Use unsigned int, not size_t.
2003-07-08 Stephane Carrez <stcarrez@nerim.fr>
* config/m68hc11/m68hc11.h (HAVE_AS_DWARF2_DEBUG_LINE): Don't define
...
...
gcc/opts.c
View file @
21789816
...
...
@@ -1526,8 +1526,8 @@ print_help (void)
static
void
wrap_help
(
const
char
*
help
,
const
char
*
item
,
size_t
item_width
)
{
const
size_
t
columns
=
80
,
col_width
=
27
;
size_
t
remaining
,
room
,
len
;
const
unsigned
in
t
columns
=
80
,
col_width
=
27
;
unsigned
in
t
remaining
,
room
,
len
;
remaining
=
strlen
(
help
);
...
...
@@ -1538,7 +1538,7 @@ wrap_help (const char *help, const char *item, size_t item_width)
if
(
room
<
len
)
{
size_
t
i
;
unsigned
in
t
i
;
for
(
i
=
0
;
help
[
i
];
i
++
)
{
...
...
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