mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
Fix typos
found them with codespell. Signed-off-by: Diego Viola <diego.viola@gmail.com>
This commit is contained in:
parent
8a24ad3073
commit
7410755c03
45 changed files with 100 additions and 100 deletions
|
|
@ -6392,13 +6392,13 @@ const char ** jack_get_ports (jack_client_t *client,
|
|||
|
||||
if (port_name_pattern && port_name_pattern[0]) {
|
||||
if ((r = regcomp(&port_regex, port_name_pattern, REG_EXTENDED | REG_NOSUB)) != 0) {
|
||||
pw_log_error("cant compile regex %s: %d", port_name_pattern, r);
|
||||
pw_log_error("can't compile regex %s: %d", port_name_pattern, r);
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
if (type_name_pattern && type_name_pattern[0]) {
|
||||
if ((r = regcomp(&type_regex, type_name_pattern, REG_EXTENDED | REG_NOSUB)) != 0) {
|
||||
pw_log_error("cant compile regex %s: %d", type_name_pattern, r);
|
||||
pw_log_error("can't compile regex %s: %d", type_name_pattern, r);
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue