Stupid comma

This commit is contained in:
dcp1990 2005-06-23 02:11:06 +00:00
parent e1c9e7db4c
commit 247b4cfd88
2 changed files with 3 additions and 3 deletions

View File

@ -151,10 +151,10 @@ int init_modem(char* dev)
pthread_mutex_unlock(&modemmx);
mo = &rockwell;
mo->init();
voice_init();
pthread_mutex_lock(&mpipemx);
pipe(modempipes);
pthread_mutex_unlock(&mpipemx);
voice_init();
return 1;
}

View File

@ -27,7 +27,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $Amigan: phoned/phoned/modems/rockwell.c,v 1.4 2005/06/22 22:00:10 dcp1990 Exp $ */
/* $Amigan: phoned/phoned/modems/rockwell.c,v 1.5 2005/06/23 02:11:08 dcp1990 Exp $ */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
@ -161,5 +161,5 @@ modem_t rockwell = {
&rw_hangup,
&rw_sdev,
&rw_voice_init,
&rw_set_rings,
&rw_set_rings
};