mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 11:00:15 -05:00
My previous indent(1) commit accidentally broke the -pcs option (which adds space between function name and opening parenthesis in function calls) by copying all but one of a few conditions in an if clause. Reinstate the condition. Add a regression test to lower the chances of breaking it again. Correct a comment with description of what the option does.
7 lines
84 B
Text
7 lines
84 B
Text
/* $FreeBSD$ */
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
puts("Hello");
|
|
return 0;
|
|
}
|