Browse Source

two typographic fixes from fernando

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@171 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
pbd 24 years ago
parent
commit
949140d22c
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      configure.in
  2. +2
    -2
      engine.c

+ 1
- 1
configure.in View File

@@ -5,7 +5,7 @@ AC_CONFIG_AUX_DIR(.)

JACK_MAJOR_VERSION=0
JACK_MINOR_VERSION=26
JACK_MICRO_VERSION=0
JACK_MICRO_VERSION=1

BETA=



+ 2
- 2
engine.c View File

@@ -450,7 +450,7 @@ jack_process (jack_engine_t *engine, nframes_t nframes)
}

ctl = client->control;
ctl->timed_out;
ctl->timed_out = 0;

if (jack_client_is_inprocess (client)) {

@@ -500,7 +500,7 @@ jack_process (jack_engine_t *engine, nframes_t nframes)
pfd[0].fd = client->subgraph_wait_fd;
pfd[0].events = POLLERR|POLLIN|POLLHUP|POLLNVAL;
if (poll (pfd, 1, engine->driver->period_usecs) < 0) {
if (poll (pfd, 1, engine->driver->period_usecs/1000) < 0) {
jack_error ("poll on subgraph processing failed (%s)", strerror (errno));
status = -1;
}


Loading…
Cancel
Save