From 5aca21a502839e2cfd30f0cfb186badc302a7eb5 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 1 Aug 2006 04:18:41 +0000 Subject: Several fixes uncovered with -pedantic playerData.c: proper error checking directory.c: properly check myFgets() for errors (it returns NULL on error) inputPlugins/mp3_plugin.c get rid of commas at the end of enums interface.c: we weren't using long long, so strtoll isn't needed get rid of void-pointer arithmetic sllist.c: get rid of void-pointer arithmetic compress.c: get rid of C++ comments, some compilers don't accept them Note that I personally like void pointer arithmetic, but some ancient compilers don't support them :( git-svn-id: https://svn.musicpd.org/mpd/trunk@4510 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/sllist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sllist.c') diff --git a/src/sllist.c b/src/sllist.c index e25615863..e87be6ad5 100644 --- a/src/sllist.c +++ b/src/sllist.c @@ -39,7 +39,7 @@ struct strnode *new_strnode_dup(char *s, const size_t size) { struct strnode *x = malloc(sizeof(struct strnode) + size); x->next = NULL; - x->data = ((void *)x + sizeof(struct strnode)); + x->data = ((char *)x + sizeof(struct strnode)); memcpy((void *)x->data, (void*)s, size); return x; } @@ -49,7 +49,7 @@ struct sllnode *new_sllnode(void *s, const size_t size) struct sllnode *x = malloc(sizeof(struct sllnode) + size); x->next = NULL; x->size = size; - x->data = ((void *)x + sizeof(struct sllnode)); + x->data = ((char *)x + sizeof(struct sllnode)); memcpy(x->data, (void *)s, size); return x; } -- cgit v1.2.3