diff options
author | Max Kellermann <max@duempel.org> | 2008-08-28 20:02:17 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-28 20:02:17 +0200 |
commit | bc1c8835c612ccb8063982657453fe658ed69d75 (patch) | |
tree | 192d420f193d8b5c6690d7064634ea58e3bc2d2d /src/sllist.c | |
parent | 801c71ed1c02a1505ef64902f6557fdfe1749a96 (diff) | |
download | mpd-bc1c8835c612ccb8063982657453fe658ed69d75.tar.gz mpd-bc1c8835c612ccb8063982657453fe658ed69d75.tar.xz mpd-bc1c8835c612ccb8063982657453fe658ed69d75.zip |
const pointers
The usual bunch of pointer arguments which should be const.
Diffstat (limited to 'src/sllist.c')
-rw-r--r-- | src/sllist.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sllist.c b/src/sllist.c index cfe392d60..0f4529fd3 100644 --- a/src/sllist.c +++ b/src/sllist.c @@ -34,22 +34,22 @@ struct strnode *new_strnode(char *s) return x; } -struct strnode *new_strnode_dup(char *s, const size_t size) +struct strnode *new_strnode_dup(const char *s, const size_t size) { struct strnode *x = xmalloc(sizeof(struct strnode) + size); x->next = NULL; x->data = ((char *)x + sizeof(struct strnode)); - memcpy((void *)x->data, (void*)s, size); + memcpy((void *)x->data, (const void*)s, size); return x; } -struct sllnode *new_sllnode(void *s, const size_t size) +struct sllnode *new_sllnode(const void *s, const size_t size) { struct sllnode *x = xmalloc(sizeof(struct sllnode) + size); x->next = NULL; x->size = size; x->data = ((char *)x + sizeof(struct sllnode)); - memcpy(x->data, (void *)s, size); + memcpy(x->data, (const void *)s, size); return x; } |