gmio_core: fix spacing issues

This commit is contained in:
Hugues Delorme 2016-01-05 11:44:53 +01:00
parent 9d9d65bbd5
commit 56241d22f6
2 changed files with 4 additions and 4 deletions

View File

@ -32,9 +32,9 @@ GMIO_INLINE int32_t gmio_stringstream_strtol10(
const char* in = gmio_stringstream_current_char(sstream);
const gmio_bool_t inv = (*in == '-');
int value = 0;
if (inv || *in == '+')
in = gmio_stringstream_next_char(sstream);
value = gmio_stringstream_strtoul10(sstream);
if (inv)
value = -value;