>From 0d4adf855466fe5c36e378eb704abafd45fc6417 Mon Sep 17 00:00:00 2001 From: Alejandro Colomar <colomar.6.4.3@xxxxxxxxx> Date: Thu, 3 Sep 2020 21:59:11 +0200 Subject: [PATCH 33/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 4093bba5a..f1a1667e3 100644 --- a/man7/inotify.7 +++ b/man7/inotify.7 @@ -1031,7 +1031,7 @@ main(int argc, char* argv[]) /* Allocate memory for watch descriptors */ - wd = calloc(argc, sizeof(int)); + wd = calloc(argc, sizeof(*wd)); if (wd == NULL) { perror("calloc"); exit(EXIT_FAILURE); -- 2.28.0