diff options
Diffstat (limited to 'post/post.c')
| -rw-r--r-- | post/post.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/post/post.c b/post/post.c index ecea1e13a..76602243e 100644 --- a/post/post.c +++ b/post/post.c @@ -196,7 +196,7 @@ static void post_get_flags (int *test_flags)  			 POST_CRITICAL };  	char *var[] = { "post_poweron", "post_normal", "post_slowtest",  			"post_critical" }; -	int varnum = sizeof (var) / sizeof (var[0]); +	int varnum = ARRAY_SIZE(var);  	char list[128];			/* long enough for POST list */  	char *name;  	char *s; |