commit | e52006c02917e7554c87581a84094e10001c5641 | [log] [tgz] |
---|---|---|
author | Andrew Walbran <qwandor@google.com> | Tue Oct 22 18:01:28 2019 +0100 |
committer | Andrew Walbran <qwandor@google.com> | Wed Oct 23 14:48:48 2019 +0100 |
tree | 788d5f4cf38887ee0c03830be5955f43fa348189 | |
parent | 70d14d6d624a191503cf72f70747a229d9729ad9 [diff] [blame] |
Fix warnings from new version of clang tidy. Change-Id: I2c85c8addd2bec83fa3796bb3ca8e87f5523a6fc
diff --git a/test/vmapi/primary_with_secondaries/mailbox.c b/test/vmapi/primary_with_secondaries/mailbox.c index 7dd47fe..934f741 100644 --- a/test/vmapi/primary_with_secondaries/mailbox.c +++ b/test/vmapi/primary_with_secondaries/mailbox.c
@@ -44,7 +44,8 @@ */ static void next_permutation(char *s, size_t len) { - size_t i, j; + size_t i; + size_t j; for (i = len - 2; i < len; i--) { const char t = s[i];