mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-04-27 10:25:57 +02:00
fgetln: Fix coding style
This commit is contained in:
parent
47109e39d5
commit
fafffd1f7e
@ -41,8 +41,8 @@ fgetln (FILE *stream, size_t *len)
|
|||||||
if (nread == -1)
|
if (nread == -1)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
(*len)--; /* get rid of the trailing \0, fgetln
|
/* Get rid of the trailing \0, fgetln does not have it. */
|
||||||
does not have it */
|
(*len)--;
|
||||||
|
|
||||||
return line;
|
return line;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user