summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/lib/talloc.c1
-rw-r--r--source3/rpcclient/rpcclient.c2
2 files changed, 0 insertions, 3 deletions
diff --git a/source3/lib/talloc.c b/source3/lib/talloc.c
index aa9fc3ed75..860fc67bcb 100644
--- a/source3/lib/talloc.c
+++ b/source3/lib/talloc.c
@@ -84,7 +84,6 @@ void *talloc(TALLOC_CTX *t, size_t size)
/* a talloc version of realloc */
void *talloc_realloc(TALLOC_CTX *t, void *ptr, size_t size)
{
- void *p;
struct talloc_chunk *tc;
for (tc=t->list; tc; tc=tc->next) {
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c
index 8cc740f072..412a17c6e0 100644
--- a/source3/rpcclient/rpcclient.c
+++ b/source3/rpcclient/rpcclient.c
@@ -607,6 +607,4 @@ static void usage(char *pname)
process_cmd(&cli, line);
}
-
- return 0;
}