From 0f6628a165945b7ae57f734f782c1e1343a8cf83 Mon Sep 17 00:00:00 2001 From: Anthony Howe Date: Thu, 27 Jun 2024 15:35:35 -0400 Subject: [PATCH] GH-873 Fix formatting of memset() commit 6b27db. --- soup/rule_count.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/soup/rule_count.c b/soup/rule_count.c index 94aa454f1..c73a68930 100644 --- a/soup/rule_count.c +++ b/soup/rule_count.c @@ -250,8 +250,8 @@ rule_count(FILE *fp_in) /* If quote == NO_STRING (0) and is_comment == NO_COMMENT (0) then its code. */ #define IS_CODE (quote == is_comment) - /* paranoia and to keep valgrind happy */ - (void) memset(word, 0, sizeof (word)); + /* Paranoia and to keep valgrind happy. */ + (void) memset(word, 0, sizeof (word)); while ((ch = fgetc(fp_in)) != EOF) { if (ch == '\r') {