Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
972cc8b5
Unverified
Commit
972cc8b5
authored
Jun 07, 2021
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sprintf.c: fix `mrb_int` and `int` mixture errors.
parent
b10a6fd4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
mrbgems/mruby-sprintf/src/sprintf.c
mrbgems/mruby-sprintf/src/sprintf.c
+8
-8
No files found.
mrbgems/mruby-sprintf/src/sprintf.c
View file @
972cc8b5
...
...
@@ -69,7 +69,7 @@ sign_bits(int base, const char *p)
}
static
char
*
mrb_uint_to_cstr
(
char
*
buf
,
size_t
len
,
mrb_int
num
,
mrb_
int
base
)
mrb_uint_to_cstr
(
char
*
buf
,
size_t
len
,
mrb_int
num
,
int
base
)
{
char
*
b
=
buf
+
len
-
1
;
const
int
mask
=
base
-
1
;
...
...
@@ -114,7 +114,7 @@ mrb_uint_to_cstr(char *buf, size_t len, mrb_int num, mrb_int base)
#ifndef MRB_NO_FLOAT
static
int
fmt_float
(
char
*
buf
,
size_t
buf_size
,
char
fmt
,
int
flags
,
mrb_int
width
,
mrb_
int
prec
,
mrb_float
f
)
fmt_float
(
char
*
buf
,
size_t
buf_size
,
char
fmt
,
int
flags
,
mrb_int
width
,
int
prec
,
mrb_float
f
)
{
char
sign
=
'\0'
;
int
left_align
=
0
;
...
...
@@ -258,9 +258,9 @@ check_name_arg(mrb_state *mrb, int posarg, const char *name, size_t len)
} while (0)
static
const
char
*
get_num
(
mrb_state
*
mrb
,
const
char
*
p
,
const
char
*
end
,
mrb_
int
*
valp
)
get_num
(
mrb_state
*
mrb
,
const
char
*
p
,
const
char
*
end
,
int
*
valp
)
{
mrb_int
next_n
=
*
valp
;
mrb_int
next_n
=
(
int
)
*
valp
;
for
(;
p
<
end
&&
ISDIGIT
(
*
p
);
p
++
)
{
if
(
mrb_int_mul_overflow
(
10
,
next_n
,
&
next_n
))
{
return
NULL
;
...
...
@@ -273,7 +273,7 @@ get_num(mrb_state *mrb, const char *p, const char *end, mrb_int *valp)
if
(
p
>=
end
)
{
mrb_raise
(
mrb
,
E_ARGUMENT_ERROR
,
"malformed format string - %%*[0-9]"
);
}
*
valp
=
next_n
;
*
valp
=
(
int
)
next_n
;
return
p
;
}
...
...
@@ -575,9 +575,9 @@ mrb_str_format(mrb_state *mrb, mrb_int argc, const mrb_value *argv, mrb_value fm
mrb_int
blen
;
mrb_int
bsiz
;
mrb_value
result
;
mrb_
int
n
;
mrb_
int
width
;
mrb_
int
prec
;
int
n
;
int
width
;
int
prec
;
int
nextarg
=
1
;
int
posarg
=
0
;
mrb_value
nextvalue
;
...
...
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