diff options
author | John Birrell <jb@FreeBSD.org> | 2008-04-26 00:54:52 +0000 |
---|---|---|
committer | John Birrell <jb@FreeBSD.org> | 2008-04-26 00:54:52 +0000 |
commit | 20594ebf9039b47ff078f8061765a1bd7aeb91e4 (patch) | |
tree | 24d646e40917d468e03d33d5425f93b94e78d6b1 /cddl/contrib/opensolaris/tools/ctf/common | |
parent | 89b5b33da21ff6dbab5e91c04d9a6d8e3b17405a (diff) | |
parent | 275928fc142e604d7d091feb5eff54c72f241964 (diff) | |
download | src-20594ebf9039b47ff078f8061765a1bd7aeb91e4.tar.gz src-20594ebf9039b47ff078f8061765a1bd7aeb91e4.zip |
This commit was generated by cvs2svn to compensate for changes in r178528,
which included commits to RCS files with non-trunk default branches.
Notes
Notes:
svn path=/head/; revision=178529
Diffstat (limited to 'cddl/contrib/opensolaris/tools/ctf/common')
-rw-r--r-- | cddl/contrib/opensolaris/tools/ctf/common/list.c | 4 | ||||
-rw-r--r-- | cddl/contrib/opensolaris/tools/ctf/common/memory.c | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/cddl/contrib/opensolaris/tools/ctf/common/list.c b/cddl/contrib/opensolaris/tools/ctf/common/list.c index 4958f270a994..c01de9b9241d 100644 --- a/cddl/contrib/opensolaris/tools/ctf/common/list.c +++ b/cddl/contrib/opensolaris/tools/ctf/common/list.c @@ -70,7 +70,7 @@ slist_add(list_t **list, void *data, int (*cmp)(void *, void *)) /*ARGSUSED2*/ static int -list_defcmp(void *d1, void *d2, void *private __unused) +list_defcmp(void *d1, void *d2, void *private) { return (d1 != d2); } @@ -135,7 +135,7 @@ list_iter(list_t *list, int (*func)(void *, void *), void *private) /*ARGSUSED*/ static int -list_count_cb(void *data __unused, void *private __unused) +list_count_cb(void *data, void *private) { return (1); } diff --git a/cddl/contrib/opensolaris/tools/ctf/common/memory.c b/cddl/contrib/opensolaris/tools/ctf/common/memory.c index e16044a8b672..390ff128e433 100644 --- a/cddl/contrib/opensolaris/tools/ctf/common/memory.c +++ b/cddl/contrib/opensolaris/tools/ctf/common/memory.c @@ -35,7 +35,6 @@ #include <stdlib.h> #include <string.h> #include <strings.h> -#include "memory.h" static void memory_bailout(void) |