diff options
| author | Michael Tuexen <tuexen@FreeBSD.org> | 2025-10-31 18:01:50 +0000 |
|---|---|---|
| committer | Michael Tuexen <tuexen@FreeBSD.org> | 2025-10-31 18:03:35 +0000 |
| commit | 3adaacad117b23abaf93a5332d538037420e1daa (patch) | |
| tree | 5994350ade78faf5348f75feddea4315454bf529 | |
| parent | 8bd9a9e9e4cb3e293c1639319692ce201eb8fc53 (diff) | |
ddb: whitespace change
No functional change intended.
MFC after: 3 days
Sponsored by: Netflix, Inc.
| -rw-r--r-- | sys/netinet/in_pcb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c index c5af39d540e4..dcd39bca2704 100644 --- a/sys/netinet/in_pcb.c +++ b/sys/netinet/in_pcb.c @@ -3158,15 +3158,15 @@ db_print_inpflags(int inp_flags) } if (inp_flags & INP_ONESBCAST) { db_printf("%sINP_ONESBCAST", comma ? ", " : ""); - comma = 1; + comma = 1; } if (inp_flags & INP_DROPPED) { db_printf("%sINP_DROPPED", comma ? ", " : ""); - comma = 1; + comma = 1; } if (inp_flags & INP_SOCKREF) { db_printf("%sINP_SOCKREF", comma ? ", " : ""); - comma = 1; + comma = 1; } if (inp_flags & INP_RESERVED_0) { db_printf("%sINP_RESERVED_0", comma ? ", " : ""); |
