>From 464c2941b936df850f03d7d9df382dc2c46f37f1 Mon Sep 17 00:00:00 2001 From: Alejandro Colomar <colomar.6.4.3@xxxxxxxxx> Date: Thu, 3 Sep 2020 21:58:59 +0200 Subject: [PATCH 32/34] inotify.7: Use sizeof consistently Use ``sizeof`` consistently through all the examples in the following way: - Use the name of the variable instead of its type as argument for ``sizeof``. Rationale: https://www.kernel.org/doc/html/v5.8/process/coding-style.html#allocating-memory Signed-off-by: Alejandro Colomar <colomar.6.4.3@xxxxxxxxx> --- man7/inotify.7 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man7/inotify.7 b/man7/inotify.7 index 9b2d7a4e5..4093bba5a 100644 --- a/man7/inotify.7 +++ b/man7/inotify.7 @@ -968,7 +968,7 @@ handle_events(int fd, int *wd, int argc, char* argv[]) /* Loop over all events in the buffer */ for (ptr = buf; ptr < buf + len; - ptr += sizeof(struct inotify_event) + event\->len) { + ptr += sizeof(*event) + event\->len) { event = (const struct inotify_event *) ptr; -- 2.28.0