libs/libc/misc/lib_utsname.c: Fixed return code in uname().
This commit is contained in:
parent
251009de3a
commit
a095dcd6bf
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@
|
|||
|
||||
int uname(FAR struct utsname *name)
|
||||
{
|
||||
int ret = 1;
|
||||
int ret = 0;
|
||||
|
||||
/* Copy the strings. Assure that each is NUL terminated. */
|
||||
|
||||
|
|
Loading…
Reference in a new issue