core: Fix gpiod_line_bulk_reset type
authorJoel Stanley <joel@jms.id.au>
Wed, 2 Feb 2022 12:32:48 +0000 (23:02 +1030)
committerBartosz Golaszewski <brgl@bgdev.pl>
Fri, 18 Feb 2022 18:36:26 +0000 (19:36 +0100)
bulk->lines is an array of pointers, so it doesn't matter which pointer
type we specify to sizeof(). As it's a struct gpiod_line *, it would
make sense to use that.

Signed-off-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
lib/core.c

index 2e7ee4b5b8968e2ad9ab9cd2e675afc2b60c42c5..6ef09baec0f5bdcf410dc2f1b49c695e9a8199f3 100644 (file)
@@ -117,7 +117,7 @@ GPIOD_API struct gpiod_line_bulk *gpiod_line_bulk_new(unsigned int max_lines)
 GPIOD_API void gpiod_line_bulk_reset(struct gpiod_line_bulk *bulk)
 {
        bulk->num_lines = 0;
-       memset(bulk->lines, 0, bulk->max_lines * sizeof(struct line *));
+       memset(bulk->lines, 0, bulk->max_lines * sizeof(struct gpiod_line *));
 }
 
 GPIOD_API void gpiod_line_bulk_free(struct gpiod_line_bulk *bulk)