fixed ugly indent stuff in libcext/strtonum.c

This commit is contained in:
garbeam 2005-12-15 01:55:21 +02:00
parent faa3f31a0d
commit f9e2188ccb

View File

@ -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;