mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 21:32:58 +00:00
MFC r312120:
Fix warnings - Staticize test_num - Promote i to size_t to deal with -Wsign-compare issues Tested with: clang, gcc, gcc49
This commit is contained in:
parent
0c49c8eae1
commit
eedcca3466
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/stable/10/; revision=313216
@ -71,7 +71,7 @@ static const char *test_groups[] = {
|
||||
"bin",
|
||||
};
|
||||
|
||||
int test_num;
|
||||
static int test_num;
|
||||
|
||||
/*
|
||||
* List of test strings that must go in (and come out) of libugidfw intact.
|
||||
@ -149,7 +149,8 @@ test_libugidfw_strings(void)
|
||||
struct mac_bsdextended_rule rule;
|
||||
char errorstr[256];
|
||||
char rulestr[256];
|
||||
int error, i;
|
||||
size_t i;
|
||||
int error;
|
||||
|
||||
for (i = 0; i < nitems(test_users); i++, test_num++) {
|
||||
if (getpwnam(test_users[i]) == NULL)
|
||||
@ -171,7 +172,7 @@ test_libugidfw_strings(void)
|
||||
error = bsde_parse_rule_string(test_strings[i], &rule,
|
||||
sizeof(errorstr), errorstr);
|
||||
if (error == -1)
|
||||
printf("not ok %d # bsde_parse_rule_string: '%s' (%d) "
|
||||
printf("not ok %d # bsde_parse_rule_string: '%s' (%zu) "
|
||||
"failed: %s\n", test_num, test_strings[i], i, errorstr);
|
||||
else
|
||||
printf("ok %d\n", test_num);
|
||||
|
Loading…
Reference in New Issue
Block a user