diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2016-02-23 08:45:54 +0100 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2016-02-23 08:45:54 +0100 |
commit | a9ae0709416fe498de85744ce639ba6a9fc50105 (patch) | |
tree | ca014a3951bf31c20900bfefb1b41f88af36a9c5 /src/machine/machinectl.c | |
parent | 16fe5e8b1d5b073c5731b170c34bddd52ccbc4ec (diff) | |
parent | 313cefa1d96ff039d31994e4ea22e6c531a99ebd (diff) |
Merge pull request #2709 from vcaputo/normalize_inc_dec_usage
tree-wide: make ++/-- usage consistent WRT spacing
Diffstat (limited to 'src/machine/machinectl.c')
-rw-r--r-- | src/machine/machinectl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/machine/machinectl.c b/src/machine/machinectl.c index 4853139321..908ae1c2bb 100644 --- a/src/machine/machinectl.c +++ b/src/machine/machinectl.c @@ -180,7 +180,7 @@ static int list_machines(int argc, char *argv[], void *userdata) { if (l > max_service) max_service = l; - n_machines ++; + n_machines++; } if (r < 0) return bus_log_parse_error(r); @@ -2236,7 +2236,7 @@ static int list_transfers(int argc, char *argv[], void *userdata) { if (id > max_id) max_id = id; - n_transfers ++; + n_transfers++; } if (r < 0) return bus_log_parse_error(r); |