mirror of
https://github.com/0intro/wmii
synced 2024-12-17 00:52:37 +03:00
fixed ugly indent stuff in libcext/strtonum.c
This commit is contained in:
parent
faa3f31a0d
commit
f9e2188ccb
@ -32,11 +32,11 @@ long long cext_strtonum(const char *numstr, long long minval, long long maxval,
|
||||
const char *errstr;
|
||||
int err;
|
||||
} ev[4] = {
|
||||
{
|
||||
NULL, 0}, {
|
||||
"invalid", EINVAL}, {
|
||||
"too small", ERANGE}, {
|
||||
"too large", ERANGE},};
|
||||
{ NULL, 0},
|
||||
{ "invalid", EINVAL},
|
||||
{ "too small", ERANGE},
|
||||
{ "too large", ERANGE},
|
||||
};
|
||||
|
||||
ev[0].err = errno;
|
||||
errno = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user