summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFelipe Sateler <fsateler@debian.org>2021-02-26 19:58:41 -0300
committerFelipe Sateler <fsateler@debian.org>2021-02-26 19:58:41 -0300
commit67e99bf6dbdb364abdd9f958dbda8c14a97b83a6 (patch)
treedbe1026cc6e0db274ada29d76b468d692e81e6a9 /src
parentf0f07c7db50bf0741746d31da2e70e74f07cf73a (diff)
downloadpulseaudio-67e99bf6dbdb364abdd9f958dbda8c14a97b83a6.tar.gz
treewide: fix a bunch of typos
Detected by lintian, the debian package linter Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/512>
Diffstat (limited to 'src')
-rw-r--r--src/modules/alsa/alsa-ucm.c2
-rw-r--r--src/modules/bluetooth/backend-native.c2
-rw-r--r--src/modules/bluetooth/backend-ofono.c2
-rw-r--r--src/pulse/json.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/alsa/alsa-ucm.c b/src/modules/alsa/alsa-ucm.c
index d9cea6105..dc2f06241 100644
--- a/src/modules/alsa/alsa-ucm.c
+++ b/src/modules/alsa/alsa-ucm.c
@@ -691,7 +691,7 @@ static char *modifier_name_to_role(const char *mod_name, bool *is_sink) {
if (!sub || !*sub) {
pa_xfree(sub);
- pa_log_warn("Can't match media roles for modifer %s", mod_name);
+ pa_log_warn("Can't match media roles for modifier %s", mod_name);
return NULL;
}
diff --git a/src/modules/bluetooth/backend-native.c b/src/modules/bluetooth/backend-native.c
index 4fb1bea70..3ad67b6ed 100644
--- a/src/modules/bluetooth/backend-native.c
+++ b/src/modules/bluetooth/backend-native.c
@@ -612,7 +612,7 @@ static DBusMessage *profile_new_connection(DBusConnection *conn, DBusMessage *m,
d = pa_bluetooth_discovery_get_device_by_path(b->discovery, path);
if (d == NULL) {
- pa_log_error("Device doesnt exist for %s", path);
+ pa_log_error("Device doesn't exist for %s", path);
goto fail;
}
diff --git a/src/modules/bluetooth/backend-ofono.c b/src/modules/bluetooth/backend-ofono.c
index 4d3393511..368efc113 100644
--- a/src/modules/bluetooth/backend-ofono.c
+++ b/src/modules/bluetooth/backend-ofono.c
@@ -347,7 +347,7 @@ static void hf_audio_agent_card_found(pa_bluetooth_backend *backend, const char
d = pa_bluetooth_discovery_get_device_by_address(backend->discovery, card->remote_address, card->local_address);
if (!d) {
- pa_log_error("Device doesnt exist for %s", path);
+ pa_log_error("Device doesn't exist for %s", path);
goto fail;
}
diff --git a/src/pulse/json.c b/src/pulse/json.c
index d126712a4..00e3a9010 100644
--- a/src/pulse/json.c
+++ b/src/pulse/json.c
@@ -168,7 +168,7 @@ static const char* parse_string(const char *str, pa_json_object *obj) {
goto error;
default:
- pa_log("Unexepcted escape value: %c", *str);
+ pa_log("Unexpected escape value: %c", *str);
goto error;
}
}