diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2017-09-09 23:55:08 +0200 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2017-09-11 09:29:50 +0200 | 
| commit | e5743f08e7efb387bb39c0dc28f36838ece3bc1e (patch) | |
| tree | b0237e17762f3be2bb6f8cf53fea1491a2c731ad /tests/unit/unit1309.c | |
| parent | ca86006debc4570bbb3eacb71965c9d59be14084 (diff) | |
code style: use spaces around pluses
Diffstat (limited to 'tests/unit/unit1309.c')
| -rw-r--r-- | tests/unit/unit1309.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/tests/unit/unit1309.c b/tests/unit/unit1309.c index cb533e70b..c53cbcbce 100644 --- a/tests/unit/unit1309.c +++ b/tests/unit/unit1309.c @@ -42,7 +42,7 @@ static void splayprint(struct Curl_tree * t, int d, char output)    if(t == NULL)      return; -  splayprint(t->larger, d+1, output); +  splayprint(t->larger, d + 1, output);    for(i = 0; i<d; i++)      if(output)        printf("  "); @@ -62,7 +62,7 @@ static void splayprint(struct Curl_tree * t, int d, char output)        printf("\n");    } -  splayprint(t->smaller, d+1, output); +  splayprint(t->smaller, d + 1, output);  }  UNITTEST_START @@ -94,7 +94,7 @@ UNITTEST_START    splayprint(root, 0, 1);    for(i = 0; i < NUM_NODES; i++) { -    int rem = (i+7)%NUM_NODES; +    int rem = (i + 7)%NUM_NODES;      printf("Tree look:\n");      splayprint(root, 0, 1);      printf("remove pointer %d, payload %ld\n", rem, @@ -119,13 +119,13 @@ UNITTEST_START      /* add some nodes with the same key */      for(j = 0; j <= i % 3; j++) {        size_t payload = key.tv_usec*10 + j; -      nodes[i*3+j].payload = (void *)payload; /* for simplicity */ -      root = Curl_splayinsert(key, root, &nodes[i*3+j]); +      nodes[i * 3 + j].payload = (void *)payload; /* for simplicity */ +      root = Curl_splayinsert(key, root, &nodes[i * 3 + j]);      }    }    removed = NULL; -  for(i = 0; i <= 1100; i+= 100) { +  for(i = 0; i <= 1100; i += 100) {      printf("Removing nodes not larger than %d\n", i);      tv_now.tv_usec = i;      root = Curl_splaygetbest(tv_now, root, &removed); | 
