summaryrefslogtreecommitdiffstats
path: root/netrom/nodesave.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/nodesave.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/nodesave.c')
-rw-r--r--netrom/nodesave.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/netrom/nodesave.c b/netrom/nodesave.c
index 1258c36..ce6c106 100644
--- a/netrom/nodesave.c
+++ b/netrom/nodesave.c
@@ -40,17 +40,17 @@ int main(int argc, char **argv)
while ((s = getopt(argc, argv, "p:v")) != -1) {
switch (s) {
- case 'p':
- sprintf(buf, "%s/nrparms", optarg);
- Nrparms = strdup(buf);
- break;
- case 'v':
- printf("nodesave: %s\n", VERSION);
- return 0;
- case ':':
- case '?':
- fputs(Usage, stderr);
- return 1;
+ case 'p':
+ sprintf(buf, "%s/nrparms", optarg);
+ Nrparms = strdup(buf);
+ break;
+ case 'v':
+ printf("nodesave: %s\n", VERSION);
+ return 0;
+ case ':':
+ case '?':
+ fputs(Usage, stderr);
+ return 1;
}
}