diff options
author | Rob Austein <sra@hactrn.net> | 2016-05-14 12:01:37 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-05-14 12:01:37 -0400 |
commit | b1225c11f89dad1a749b6572e50e5e5fce5234e8 (patch) | |
tree | 9a48533db312fcb73d1c922851a6b51c3299b8e7 /tests/test-rpc_get_random.c | |
parent | c861f7d2f3c5f69c02a633c51113518b70eedc27 (diff) |
Trailing whitespace cleanup.
Diffstat (limited to 'tests/test-rpc_get_random.c')
-rw-r--r-- | tests/test-rpc_get_random.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-rpc_get_random.c b/tests/test-rpc_get_random.c index 9e9765d..e495514 100644 --- a/tests/test-rpc_get_random.c +++ b/tests/test-rpc_get_random.c @@ -55,11 +55,11 @@ int main(int argc, char *argv[]) len = atoi(argv[1]); if (len <= 0) /* no arg, or bad arg */ len = DEFAULT_LEN; - + uint8_t rnd[len]; #define check(op) { hal_error_t err; if ((err = (op)) != HAL_OK) { printf("%s: %s\n", #op, hal_error_string(err)); return 1; } } - + check(hal_rpc_client_init()); check(hal_rpc_get_random(rnd, sizeof(rnd))); |