summaryrefslogtreecommitdiffstats
path: root/netrom/netromt.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-06-05 15:34:56 +0200
committerRalf Baechle <ralf@linux-mips.org>2013-06-17 17:30:13 +0200
commitf76e0b330f0be28f9f3af3073904ede3a34d48f5 (patch)
tree157597d534cf357a8bfddb1822a41902b4eba93b /netrom/netromt.c
parent406b11281cf451927ac348f0639161d2f084743f (diff)
Reformat consistently. Strictly whitespace changes only.
Indentation by tabs only. Move case labels in switches are on the same level as the switch keyword. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'netrom/netromt.c')
-rw-r--r--netrom/netromt.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/netrom/netromt.c b/netrom/netromt.c
index d74b091..2a5bc3c 100644
--- a/netrom/netromt.c
+++ b/netrom/netromt.c
@@ -206,14 +206,14 @@ void transmit_nodes(int localval, int pause)
int i;
switch (fork()) {
- case 0:
- break;
- case -1:
- if (logging)
- syslog(LOG_ERR, "netromt: fork: %m\n");
- return;
- default:
- return;
+ case 0:
+ break;
+ case -1:
+ if (logging)
+ syslog(LOG_ERR, "netromt: fork: %m\n");
+ return;
+ default:
+ return;
}
dlen = ax25_aton("NODES", &dest);