* [PATCH] resolve-undo.c: silence compiler complaints by casting void * to char *
@ 2010-02-01 23:00 Brandon Casey
2010-02-01 23:44 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Brandon Casey @ 2010-02-01 23:00 UTC (permalink / raw)
To: gitster; +Cc: git, Brandon Casey
From: Brandon Casey <drafnel@gmail.com>
Some compilers produce errors when arithmetic is attempted on pointers to
void. We want computations done on byte addresses, so cast them to char *
to work them around.
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
---
resolve-undo.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/resolve-undo.c b/resolve-undo.c
index 37d73cd..c259fe6 100644
--- a/resolve-undo.c
+++ b/resolve-undo.c
@@ -75,7 +75,7 @@ struct string_list *resolve_undo_read(void *data, unsigned long size)
lost->util = xcalloc(1, sizeof(*ui));
ui = lost->util;
size -= len;
- data += len;
+ data = (char*) data + len;
for (i = 0; i < 3; i++) {
ui->mode[i] = strtoul(data, &endptr, 8);
@@ -85,7 +85,7 @@ struct string_list *resolve_undo_read(void *data, unsigned long size)
if (size <= len)
goto error;
size -= len;
- data += len;
+ data = (char*) data + len;
}
for (i = 0; i < 3; i++) {
@@ -95,7 +95,7 @@ struct string_list *resolve_undo_read(void *data, unsigned long size)
goto error;
hashcpy(ui->sha1[i], data);
size -= 20;
- data += 20;
+ data = (char*) data + 20;
}
}
return resolve_undo;
--
1.6.6
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] resolve-undo.c: silence compiler complaints by casting void * to char *
2010-02-01 23:00 [PATCH] resolve-undo.c: silence compiler complaints by casting void * to char * Brandon Casey
@ 2010-02-01 23:44 ` Junio C Hamano
2010-02-02 5:46 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2010-02-01 23:44 UTC (permalink / raw)
To: Brandon Casey; +Cc: gitster, git, Brandon Casey
Thanks for catching this.
In this particular case, I however suspect that it would be cleaner to
declare that the first parameter to resolve_undo_read() is a "char *"
(or even "const char *"), as we are dealing with NUL delimited list of
octal numbers and character strings.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] resolve-undo.c: silence compiler complaints by casting void * to char *
2010-02-01 23:44 ` Junio C Hamano
@ 2010-02-02 5:46 ` Junio C Hamano
2010-02-02 15:23 ` Brandon Casey
0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2010-02-02 5:46 UTC (permalink / raw)
To: Brandon Casey; +Cc: git, Brandon Casey
Junio C Hamano <gitster@pobox.com> writes:
> Thanks for catching this.
>
> In this particular case, I however suspect that it would be cleaner to
> declare that the first parameter to resolve_undo_read() is a "char *"
> (or even "const char *"), as we are dealing with NUL delimited list of
> octal numbers and character strings.
It would look like this. I wonder if we should make hash*() inline
functions to take (void *) or (const void *) pointers to avoid further
noises like this but that would be a separate topic.
resolve-undo.c | 4 ++--
resolve-undo.h | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/resolve-undo.c b/resolve-undo.c
index 37d73cd..0f50ee0 100644
--- a/resolve-undo.c
+++ b/resolve-undo.c
@@ -53,7 +53,7 @@ void resolve_undo_write(struct strbuf *sb, struct string_list *resolve_undo)
for_each_string_list(write_one, resolve_undo, sb);
}
-struct string_list *resolve_undo_read(void *data, unsigned long size)
+struct string_list *resolve_undo_read(const char *data, unsigned long size)
{
struct string_list *resolve_undo;
size_t len;
@@ -93,7 +93,7 @@ struct string_list *resolve_undo_read(void *data, unsigned long size)
continue;
if (size < 20)
goto error;
- hashcpy(ui->sha1[i], data);
+ hashcpy(ui->sha1[i], (const unsigned char *)data);
size -= 20;
data += 20;
}
diff --git a/resolve-undo.h b/resolve-undo.h
index e4e5c1b..8458769 100644
--- a/resolve-undo.h
+++ b/resolve-undo.h
@@ -8,7 +8,7 @@ struct resolve_undo_info {
extern void record_resolve_undo(struct index_state *, struct cache_entry *);
extern void resolve_undo_write(struct strbuf *, struct string_list *);
-extern struct string_list *resolve_undo_read(void *, unsigned long);
+extern struct string_list *resolve_undo_read(const char *, unsigned long);
extern void resolve_undo_clear_index(struct index_state *);
extern int unmerge_index_entry_at(struct index_state *, int);
extern void unmerge_index(struct index_state *, const char **);
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] resolve-undo.c: silence compiler complaints by casting void * to char *
2010-02-02 5:46 ` Junio C Hamano
@ 2010-02-02 15:23 ` Brandon Casey
0 siblings, 0 replies; 4+ messages in thread
From: Brandon Casey @ 2010-02-02 15:23 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git, Brandon Casey
Junio C Hamano wrote:
> Junio C Hamano <gitster@pobox.com> writes:
>
>> Thanks for catching this.
>>
>> In this particular case, I however suspect that it would be cleaner to
>> declare that the first parameter to resolve_undo_read() is a "char *"
>> (or even "const char *"), as we are dealing with NUL delimited list of
>> octal numbers and character strings.
>
> It would look like this.
This works for me.
Thanks,
-brandon
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-02-02 15:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-01 23:00 [PATCH] resolve-undo.c: silence compiler complaints by casting void * to char * Brandon Casey
2010-02-01 23:44 ` Junio C Hamano
2010-02-02 5:46 ` Junio C Hamano
2010-02-02 15:23 ` Brandon Casey
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox