Browse Source

More spelling fixes from Debian QA

tags/v1.9.13
Adrian Knoth 7 years ago
parent
commit
c5dac6270e
5 changed files with 9 additions and 9 deletions
  1. +1
    -1
      common/JackNetOneDriver.cpp
  2. +4
    -4
      common/JackProxyDriver.h
  3. +1
    -1
      dbus/sigsegv.c
  4. +1
    -1
      example-clients/wait.c
  5. +2
    -2
      linux/alsa/JackAlsaAdapter.h

+ 1
- 1
common/JackNetOneDriver.cpp View File

@@ -959,7 +959,7 @@ extern "C"
jack_driver_descriptor_add_parameter(desc, &filler, "redundancy", 'R', JackDriverParamUInt, &value, NULL, "Send packets N times", NULL);

value.ui = false;
jack_driver_descriptor_add_parameter(desc, &filler, "native-endian", 'e', JackDriverParamBool, &value, NULL, "Dont convert samples to network byte order", NULL);
jack_driver_descriptor_add_parameter(desc, &filler, "native-endian", 'e', JackDriverParamBool, &value, NULL, "Don't convert samples to network byte order", NULL);

value.i = 0;
jack_driver_descriptor_add_parameter(desc, &filler, "jitterval", 'J', JackDriverParamInt, &value, NULL, "Attempted jitterbuffer microseconds on master", NULL);


+ 4
- 4
common/JackProxyDriver.h View File

@@ -73,10 +73,10 @@ namespace Jack
int* fUpstreamCapturePortConnected; /*<! map of capture ports connected upstream, for optimization purpose */
int* fUpstreamPlaybackPortConnected; /*<! map of playback ports connected upstream, for optimization purpose */

bool fAutoSave; /*<! wether the local connections should be saved/restored when upstream connection is restarted */
bool fAutoConnect; /*<! wether the upstream ports should be automatically connected to upstream physical ports */
bool fDetectPlaybackChannels; /*<! wether the number of playback ports registered should match the number of upstream physical playback ports */
bool fDetectCaptureChannels; /*<! wether the number of capture ports registered should match the number of upstream physical capture ports */
bool fAutoSave; /*<! whether the local connections should be saved/restored when upstream connection is restarted */
bool fAutoConnect; /*<! whether the upstream ports should be automatically connected to upstream physical ports */
bool fDetectPlaybackChannels; /*<! whether the number of playback ports registered should match the number of upstream physical playback ports */
bool fDetectCaptureChannels; /*<! whether the number of capture ports registered should match the number of upstream physical capture ports */

bool Initialize(); /*<! establish upstream connection and register the client callbacks */



+ 1
- 1
dbus/sigsegv.c View File

@@ -94,7 +94,7 @@ static void signal_segv(int signum, siginfo_t* info, void*ptr) {
}
else
{
jack_error("Unknown bad signal catched!");
jack_error("Unknown bad signal caught!");
}

if (info->si_code >= 0 && info->si_code < 3)


+ 1
- 1
example-clients/wait.c View File

@@ -19,7 +19,7 @@ show_usage(void)
fprintf(stderr, " -s, --server <name> Connect to the jack server named <name>\n");
fprintf(stderr, " -w, --wait Wait for server to become available\n");
fprintf(stderr, " -q, --quit Wait until server is quit\n");
fprintf(stderr, " -c, --check Check wether server is running\n");
fprintf(stderr, " -c, --check Check whether server is running\n");
fprintf(stderr, " -t, --timeout Wait timeout in seconds\n");
fprintf(stderr, " -h, --help Display this help message\n");
fprintf(stderr, "For more information see http://jackaudio.org/\n");


+ 2
- 2
linux/alsa/JackAlsaAdapter.h View File

@@ -421,7 +421,7 @@ namespace Jack
}
break;
default :
check_error_msg ( -10000, "unknow access mode" );
check_error_msg ( -10000, "unknown access mode" );
break;
}
return 0;
@@ -507,7 +507,7 @@ namespace Jack
}
break;
default :
check_error_msg ( -10000, "unknow access mode" );
check_error_msg ( -10000, "unknown access mode" );
break;
}
return 0;


Loading…
Cancel
Save