Fix void* arithmetic warning (-Wpointer-arith)
authorJenny Wong <jyw@google.com>
Thu, 6 Aug 2015 17:02:35 +0000 (10:02 -0700)
committerJenny Wong <jyw@google.com>
Thu, 6 Aug 2015 18:55:52 +0000 (11:55 -0700)
https://gcc.gnu.org/onlinedocs/gcc/Pointer-Arith.html
gcc will assume sizeof(void) == 1 when doing pointer arithmetic on
void*s, but other compilers may not.


No differences found