code-style: fix multi-line comment style - sfeed_curses - sfeed curses UI (now part of sfeed, development is in sfeed)
(HTM) git clone git://git.codemadness.org/sfeed_curses
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 46695b179d5aa4893ab8f1a6943f280dafe6d98b
(DIR) parent 83f15d40dff4c353efba704e7c51f05e077179d2
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Wed, 10 Mar 2021 17:42:13 +0100
code-style: fix multi-line comment style
Diffstat:
M sfeed_curses.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
(DIR) diff --git a/sfeed_curses.c b/sfeed_curses.c
@@ -286,8 +286,8 @@ strcasestr(const char *h, const char *n)
}
/* Splits fields in the line buffer by replacing TAB separators with NUL ('\0')
- * terminators and assign these fields as pointers. If there are less fields
- * than expected then the field is an empty string constant. */
+ terminators and assign these fields as pointers. If there are less fields
+ than expected then the field is an empty string constant. */
void
parseline(char *line, char *fields[FieldLast])
{
@@ -357,7 +357,7 @@ colw(const char *s)
}
/* Format `len' columns of characters. If string is shorter pad the rest
- * with characters `pad`. */
+ with characters `pad`. */
int
utf8pad(char *buf, size_t bufsiz, const char *s, size_t len, int pad)
{