2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 09:57:41 +00:00

Fix indentation of enum def_tuple.

This commit is contained in:
Todd C. Miller 2020-09-29 21:16:34 -06:00
parent 772619b7ef
commit ea57249e29
2 changed files with 11 additions and 11 deletions

View File

@ -131,7 +131,7 @@ END {
# Print out def_tuple
print "\nenum def_tuple {" > header
for (i = 0; i < ntuples; i++)
printf "%s\t%s", i ? ",\n" : "", tuple_values[i] > header
printf "%s %s", i ? ",\n" : "", tuple_values[i] > header
print "\n};" > header
}