[libxml2] Remove unused variables
- From: Nick Wellnhofer <nwellnhof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libxml2] Remove unused variables
- Date: Wed, 12 Oct 2016 11:29:45 +0000 (UTC)
commit 94613f64c032c954fc9aefb9559469935123cd01
Author: Nick Wellnhofer <wellnhofer aevum de>
Date: Mon Aug 22 12:16:31 2016 +0200
Remove unused variables
doc/examples/tree2.c | 3 +--
timsort.h | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/doc/examples/tree2.c b/doc/examples/tree2.c
index 1cd1abe..6548e29 100644
--- a/doc/examples/tree2.c
+++ b/doc/examples/tree2.c
@@ -27,7 +27,6 @@ main(int argc, char **argv)
{
xmlDocPtr doc = NULL; /* document pointer */
xmlNodePtr root_node = NULL, node = NULL, node1 = NULL;/* node pointers */
- xmlDtdPtr dtd = NULL; /* DTD pointer */
char buff[256];
int i, j;
@@ -43,7 +42,7 @@ main(int argc, char **argv)
/*
* Creates a DTD declaration. Isn't mandatory.
*/
- dtd = xmlCreateIntSubset(doc, BAD_CAST "root", NULL, BAD_CAST "tree2.dtd");
+ xmlCreateIntSubset(doc, BAD_CAST "root", NULL, BAD_CAST "tree2.dtd");
/*
* xmlNewChild() creates a new node, which is "attached" as child node
diff --git a/timsort.h b/timsort.h
index 9369e7c..19aebf2 100644
--- a/timsort.h
+++ b/timsort.h
@@ -394,7 +394,7 @@ static int TIM_SORT_COLLAPSE(SORT_TYPE *dst, TIM_SORT_RUN_T *stack, int stack_cu
{
while (1) {
int64_t A, B, C, D;
- int ABC, BCD, BD, CD;
+ int ABC, BCD, CD;
/* if the stack only has one thing on it, we are done with the collapse */
if (stack_curr <= 1) {
@@ -431,7 +431,6 @@ static int TIM_SORT_COLLAPSE(SORT_TYPE *dst, TIM_SORT_RUN_T *stack, int stack_cu
BCD = (B <= C + D) || ABC;
CD = (C <= D);
- BD = (B < D);
/* Both invariants are good */
if (!BCD && !CD) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]