Avoid pointer arithmetic with `void *`
authorMichael Forney <mforney@mforney.org>
Tue, 4 Jun 2019 19:33:17 +0000 (12:33 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Thu, 6 Jun 2019 12:31:41 +0000 (13:31 +0100)
commit63c11456d48b156b33b8b16cd47759c0d406f5b9
tree3bc8b85554865ab7d33ddf743c8e4571636ff9fb
parenta6024d4bf8868b88eb516d7322e5739742a9c688
Avoid pointer arithmetic with `void *`

The pointer operand to the binary `+` operator must be to a complete
object type. Since we are working with byte sizes, use `char *` instead.
lib/buffer.c
lib/fuse_lowlevel.c
lib/fuse_opt.c