Loading libcutils/mspace.c +2 −1 Original line number Diff line number Diff line Loading @@ -179,7 +179,8 @@ mspace create_contiguous_mspace_with_name(size_t starting_capacity, /* Create the mspace, pointing to the memory we just reserved. */ m = create_mspace_with_base(base + sizeof(*cs), starting_capacity, locked); m = create_mspace_with_base((char *)base + sizeof(*cs), starting_capacity, locked); if (m == (mspace)0) goto error; Loading Loading
libcutils/mspace.c +2 −1 Original line number Diff line number Diff line Loading @@ -179,7 +179,8 @@ mspace create_contiguous_mspace_with_name(size_t starting_capacity, /* Create the mspace, pointing to the memory we just reserved. */ m = create_mspace_with_base(base + sizeof(*cs), starting_capacity, locked); m = create_mspace_with_base((char *)base + sizeof(*cs), starting_capacity, locked); if (m == (mspace)0) goto error; Loading