diff options
author | Daniel Martin <consume.noise@gmail.com> | 2017-10-27 16:11:55 +0200 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2017-10-30 13:44:53 -0400 |
commit | 15a32ee5d1fffa171bb05af9a0e5b472e4af1488 (patch) | |
tree | 865873558fd3949b1dcfa9f9bab86d899e57d105 | |
parent | 0bcc65f2bf479c6a74ac70bb5b5181d6834dded6 (diff) |
test: signal-logging: Fix looping signed number tests
unsigned_tests[] was used to compute the amount of signed numbers to
test.
Signed-off-by: Daniel Martin <consume.noise@gmail.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
-rw-r--r-- | test/signal-logging.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/signal-logging.c b/test/signal-logging.c index 9bf39e58d..ca327e9aa 100644 --- a/test/signal-logging.c +++ b/test/signal-logging.c @@ -148,7 +148,7 @@ number_formatting(void) for (i = 0; i < sizeof(unsigned_tests) / sizeof(unsigned_tests[0]); i++) assert(check_number_format_test(unsigned_tests[i])); - for (i = 0; i < sizeof(unsigned_tests) / sizeof(signed_tests[0]); i++) + for (i = 0; i < sizeof(signed_tests) / sizeof(signed_tests[0]); i++) assert(check_signed_number_format_test(signed_tests[i])); for (i = 0; i < sizeof(float_tests) / sizeof(float_tests[0]); i++) |