Browse Source

[0.97.5] remove empty default: case

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@696 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
joq 22 years ago
parent
commit
efbc3606e0
2 changed files with 3 additions and 4 deletions
  1. +1
    -1
      configure.in
  2. +2
    -3
      libjack/client.c

+ 1
- 1
configure.in View File

@@ -15,7 +15,7 @@ dnl changes are made
dnl ---
JACK_MAJOR_VERSION=0
JACK_MINOR_VERSION=97
JACK_MICRO_VERSION=4
JACK_MICRO_VERSION=5

dnl ---
dnl HOWTO: updating the jack protocol version


+ 2
- 3
libjack/client.c View File

@@ -509,10 +509,9 @@ start_server (void)
}
case -1: /* fork() error */
return 1; /* failed to start server */

default: /* original parent process */
/* fall through and return */
}

/* only the original parent process goes here */
return 0; /* (probably) successful */
}



Loading…
Cancel
Save