gmio_core: fix spacing issues
This commit is contained in:
parent
9d9d65bbd5
commit
56241d22f6
@ -32,9 +32,9 @@ GMIO_INLINE int32_t gmio_stringstream_strtol10(
|
|||||||
const char* in = gmio_stringstream_current_char(sstream);
|
const char* in = gmio_stringstream_current_char(sstream);
|
||||||
const gmio_bool_t inv = (*in == '-');
|
const gmio_bool_t inv = (*in == '-');
|
||||||
int value = 0;
|
int value = 0;
|
||||||
|
|
||||||
if (inv || *in == '+')
|
if (inv || *in == '+')
|
||||||
in = gmio_stringstream_next_char(sstream);
|
in = gmio_stringstream_next_char(sstream);
|
||||||
|
|
||||||
value = gmio_stringstream_strtoul10(sstream);
|
value = gmio_stringstream_strtoul10(sstream);
|
||||||
if (inv)
|
if (inv)
|
||||||
value = -value;
|
value = -value;
|
||||||
|
Loading…
Reference in New Issue
Block a user