Thread (1 message) 1 message, 1 author, 2016-06-16

Re: [PATCH v3 09/16] index-helper: use watchman to avoid refreshing index with lstat()

From: Junio C Hamano <hidden>
Date: 2016-06-16 02:18:42

David Turner [off-list ref] writes:
On Thu, 2016-04-07 at 15:52 -0700, Junio C Hamano wrote:
quoted
Junio C Hamano [off-list ref] writes:
quoted
quoted
+		untracked = data + len + 8 + bitmap_size;
This breaks compilation as data here is of type (void *).

There may be similar breakages in this patch.
It turns out that this is the only one, and

	untracked = (char *)data + len + 8 + bitmap_size;

is a sufficient fix (I've squashed it in to my copy).

Thanks.
Thanks.  I've squashed it into mine as well but with const char *
instead (seems maybe cleaner to me)
Yeah, I agree, as "data" is "const void *", so even though the left
hand side of the assignment, "untracked", is "const char *", my cast
is (temporarily) casting the const away--it would be better to use
"const char *" there.

Thanks.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help