summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Brand <tom@trellis.ch>2019-01-16 01:36:43 +0100
committerThomas Brand <tom@trellis.ch>2019-01-16 01:36:43 +0100
commit04804290e2251039cd6e971ec3a34b81213dcd57 (patch)
tree0e948e76c14198c88c201b6b1af5abfda077d97e
parent681cb1c751a43b5ca02f1d6a7a5b5264df32001f (diff)
downloadjack2-04804290e2251039cd6e971ec3a34b81213dcd57.tar.gz
Fix indentation
-rw-r--r--example-clients/alsa_in.c8
-rw-r--r--example-clients/alsa_out.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/example-clients/alsa_in.c b/example-clients/alsa_in.c
index dc89fc99..de694e07 100644
--- a/example-clients/alsa_in.c
+++ b/example-clients/alsa_in.c
@@ -686,10 +686,10 @@ int main (int argc, char *argv[]) {
case 's':
smooth_size = atoi(optarg);
break;
- case 'S':
- server_name = optarg;
- jack_opts |= JackServerName;
- break;
+ case 'S':
+ server_name = optarg;
+ jack_opts |= JackServerName;
+ break;
case ':':
fprintf(stderr,
"Option -%c requires an operand\n", optopt);
diff --git a/example-clients/alsa_out.c b/example-clients/alsa_out.c
index 7ad64e4e..04122603 100644
--- a/example-clients/alsa_out.c
+++ b/example-clients/alsa_out.c
@@ -689,7 +689,7 @@ int main (int argc, char *argv[]) {
case 's':
smooth_size = atoi(optarg);
break;
- case 'S':
+ case 'S':
server_name = optarg;
jack_opts |= JackServerName;
break;