From 01b185f9795340e28b53f46a4bd8af7de6299c47 Mon Sep 17 00:00:00 2001 From: Iztok Jeras <iztok.jeras@redpitaya.com> Date: ćšć, 08 10æ 2015 03:00:34 +0800 Subject: [PATCH] integer parser: fix array length for double variables --- libscpi/test/test_scpi_utils.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libscpi/test/test_scpi_utils.c b/libscpi/test/test_scpi_utils.c index f3f3989..f3302c3 100644 --- a/libscpi/test/test_scpi_utils.c +++ b/libscpi/test/test_scpi_utils.c @@ -218,7 +218,7 @@ static void test_doubleToStr() { const size_t max=49+1; double val[] = {1, -1, 1.1, -1.1, 1e3, 1e30, -1.3e30, -1.3e-30}; - int N = sizeof(val) / sizeof(int); + int N = sizeof(val) / sizeof(double); int i; char str[max]; char ref[max]; -- Gitblit v1.9.1