]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/journal/audit_type-to-name.awk
meson: also indent scripts with 8 spaces
[thirdparty/systemd.git] / src / journal / audit_type-to-name.awk
1 BEGIN{
2 print "const char *audit_type_to_string(int type) {\n\tswitch(type) {"
3 }
4 {
5 printf " case AUDIT_%s: return \"%s\";\n", $1, $1
6 }
7 END{
8 print " default: return NULL;\n\t}\n}\n"
9 }