diff options
author | Richard Braun <rbraun@sceen.net> | 2017-07-01 18:52:56 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-07-01 18:52:56 +0200 |
commit | 9941dfbbb8aea80b7a98fce1651a9fb4b6d7534b (patch) | |
tree | a0ac571a27850678828a56bdd6508dde67f8ba1e /test/test_llsync_defer.c | |
parent | b8542a013fd35334b80a4d8cf7e4b5e3483ffb9b (diff) |
Minor style fixes
Diffstat (limited to 'test/test_llsync_defer.c')
-rw-r--r-- | test/test_llsync_defer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_llsync_defer.c b/test/test_llsync_defer.c index 249c53a5..4b8afbc7 100644 --- a/test/test_llsync_defer.c +++ b/test/test_llsync_defer.c @@ -167,10 +167,11 @@ test_read(void *arg) s = (const unsigned char *)pdsc->addr; if (s != NULL) { - for (j = 0; j < PAGE_SIZE; j++) + for (j = 0; j < PAGE_SIZE; j++) { if (s[j] != TEST_VALIDATION_BYTE) { panic("invalid content"); } + } if ((i % TEST_LOOPS_PER_PRINT) == 0) { printf("read "); |