From a4441d4a4e3ff5a390aadb01b8aaf5f997eee9b2 Mon Sep 17 00:00:00 2001 From: Sylvain Date: Thu, 3 Oct 2024 10:51:12 +0200 Subject: [PATCH] testapp: don't random test with size '0' --- examples/testapp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/testapp.c b/examples/testapp.c index 2f9b6b76..858793ec 100644 --- a/examples/testapp.c +++ b/examples/testapp.c @@ -1205,6 +1205,8 @@ static void random_input(void) curr_size = rand_n(200); } } + + curr_size += 1; /* don't test size '0' */ } /* Current Font: change less often */