mescc: Debugging oops.
* lib/libc.c (__mes_debug): Oops, wrong direction.
This commit is contained in:
parent
a9215931e8
commit
49bcea84fd
|
@ -58,7 +58,7 @@ __mes_debug ()
|
||||||
if (__mes_debug == -1)
|
if (__mes_debug == -1)
|
||||||
{
|
{
|
||||||
char *p = getenv ("MES_DEBUG");
|
char *p = getenv ("MES_DEBUG");
|
||||||
__mes_debug = p ? MAX (itoa (p), 1) : 0;
|
__mes_debug = p ? MAX (atoi (p), 1) : 0;
|
||||||
}
|
}
|
||||||
return __mes_debug;
|
return __mes_debug;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue