remove dangling spaces

This commit is contained in:
mrdudz
2022-04-17 16:07:09 +02:00
parent cd1b7a9e9d
commit 78244351b7
50 changed files with 67 additions and 67 deletions

View File

@@ -580,7 +580,7 @@ int xvsnprintf (char* Buf, size_t Size, const char* Format, va_list ap)
CHECK (S != 0);
/* Handle the length by using a precision */
if ((P.Flags & fPrec) != 0) {
/* Precision already specified, use length of string
/* Precision already specified, use length of string
** if less.
*/
if ((unsigned) P.Prec > SB_GetLen (S)) {