From: git Date: Wed, 18 Feb 2026 12:45:14 +0000 (-0500) Subject: fixed a garbled comment X-Git-Url: https://git.datadissipation.net/?a=commitdiff_plain;h=fb937e95d681e6f4e08ed899685c45ca00f2d452;p=ust.git fixed a garbled comment --- diff --git a/ust.c b/ust.c index 7d5ac69..e6e87bc 100644 --- a/ust.c +++ b/ust.c @@ -69,7 +69,7 @@ static void die(int code, const char *msg, ...); static Args bsargs = {DEL, DEL, 0}; static Args nocrargs = {CR, 0, 0}; -static Args nolfargs = {LF, '\0', 0}; /* null-terminator to use*/ +static Args nolfargs = {LF, '\0', 0}; /* null-terminator is for use inside `getcmd()` */ static Args lfincrargs = {CR, LF, 1}; static Args crinlfargs = {LF, CR, -1}; static const unsigned int uintmax = ~(unsigned int)0; /* unsigned -1 to return on error */