From 64ce116687290689b20aed287c808f65cb78f8a0 Mon Sep 17 00:00:00 2001 From: Arthur Taylor Date: Sat, 23 Jan 2021 14:50:00 -0800 Subject: [PATCH] Fix command_test Subformat count --- tests/command_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/command_test.c b/tests/command_test.c index c2379201..86cbcfb3 100644 --- a/tests/command_test.c +++ b/tests/command_test.c @@ -532,7 +532,7 @@ format_tests (void) /* Now test subtype formats. */ sf_command (NULL, SFC_GET_FORMAT_SUBTYPE_COUNT, &count, sizeof (int)) ; - if (count < 0 || count > 30) + if (count < 0 || count > 33) { printf ("Line %d: Weird count.\n", __LINE__) ; exit (1) ; } ;