From a7751aafaa57d133b5df6add6c567a925c20efd9 Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Thu, 3 Sep 2020 21:51:07 +0200 Subject: [PATCH] mbstowcs.3: 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 Signed-off-by: Michael Kerrisk --- man3/mbstowcs.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man3/mbstowcs.3 b/man3/mbstowcs.3 index cf650506e..2f9fbc17c 100644 --- a/man3/mbstowcs.3 +++ b/man3/mbstowcs.3 @@ -186,7 +186,7 @@ main(int argc, char *argv[]) /* Allocate wide character string of the desired size. Add 1 to allow for terminating null wide character (L\(aq\e0\(aq). */ - wcs = calloc(mbslen + 1, sizeof(wchar_t)); + wcs = calloc(mbslen + 1, sizeof(*wcs)); if (wcs == NULL) { perror("calloc"); exit(EXIT_FAILURE);