summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/c/00101-bugs-1.c
blob: abc2e08e9a7276f0a554336f12034c48289b0446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
int oldfoo(bar)
char bar;
{
   return(bar - 2);
}

int i2c_use_client(struct i2c_client *client)
{
   int ret;

   ret = i2c_inc_use_client(client);
   if (ret)
   {
      return(ret);
   }

   if ((client->flags & I2C_CLIENT_ALLOW_USE) || (a &&
                                                  something_else))
   {
      if (client->flags & I2C_CLIENT_ALLOW_MULTIPLE_USE)
      {
         client->usage_count++;
      }
      else if (client->usage_count > 0)
      {
         goto busy;
      }
      else
      {
         client->usage_count++;
      }
   }

   return(0);

 busy:
   i2c_dec_use_client(client);
   return(-EBUSY);
}

void get_name(void)
{
   a = (int)5;

   if (a)
   {
      if (b)
      {
         b--;
      }
      else
      {
         a++;
      }
   }
   for (a = 0; a < 10; a++)
   {
      if (b)
      {
         b--;
      }
      else
      {
         a++;
      }
   }
   return;
}