2011-06-02 Ivan Maidanski <ivmai@mail.ru>
authorivmai <ivmai>
Thu, 2 Jun 2011 14:42:01 +0000 (14:42 +0000)
committerIvan Maidanski <ivmai@mail.ru>
Mon, 25 Jul 2011 12:03:26 +0000 (16:03 +0400)
* tests/test_malloc.c (main): Remove unused "exper_n" local
variable.
* tests/test_stack.c (run_one_test): Remove unused "aux" local
variable.

ChangeLog
tests/test_malloc.c
tests/test_stack.c

index b2e622b..87efa3d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-06-02  Ivan Maidanski  <ivmai@mail.ru>
+
+       * tests/test_malloc.c (main): Remove unused "exper_n" local
+       variable.
+       * tests/test_stack.c (run_one_test): Remove unused "aux" local
+       variable.
+
 2011-06-01  Ivan Maidanski  <ivmai@mail.ru>
 
        * src/atomic_ops/sysdeps/gcc/arm.h
index 11e13ce..f7df342 100644 (file)
@@ -179,7 +179,6 @@ void * run_one_test(void * arg) {
 
 int main(int argc, char **argv) {
     int nthreads;
-    int exper_n;
 
     if (1 == argc) {
       nthreads = DEFAULT_NTHREADS;
index 177ceee..a190a78 100644 (file)
@@ -112,7 +112,6 @@ volatile AO_t ops_performed = 0;
 void * run_one_test(void * arg)
 {
   list_element * t[MAX_NTHREADS + 1];
-  list_element * aux;
   long index = (long)arg;
   int i;
   int j = 0;