2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 14:25:15 +00:00

correct the return value type of function alias_find_used

This commit is contained in:
bianguangze
2023-06-09 09:46:05 +08:00
parent c7070b0475
commit b4dcac650f

View File

@@ -374,5 +374,5 @@ alias_find_used(struct sudoers_parse_tree *parse_tree, struct rbtree *used_alias
}
}
debug_return_int(errors ? false : true);
debug_return_bool(errors ? false : true);
}