mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -04:00
Fix typos
This commit is contained in:
parent
b75b8aaf42
commit
0c0c285e79
10 changed files with 16 additions and 16 deletions
|
|
@ -926,7 +926,7 @@ int main(int argc, char *argv[]) {
|
|||
if (mlockall(MCL_FUTURE) < 0)
|
||||
pa_log_warn("mlockall() failed: %s", pa_cstrerror(errno));
|
||||
else
|
||||
pa_log_info("Sucessfully locked process into memory.");
|
||||
pa_log_info("Successfully locked process into memory.");
|
||||
#else
|
||||
pa_log_warn("Memory locking requested but not supported on platform.");
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -991,7 +991,7 @@ static int element_mute_volume(pa_alsa_element *e, snd_mixer_t *m) {
|
|||
r = snd_mixer_selem_set_capture_volume_all(me, e->min_volume);
|
||||
|
||||
if (r < 0)
|
||||
pa_log_warn("Faile to set volume to muted of %s: %s", e->alsa_name, pa_alsa_strerror(errno));
|
||||
pa_log_warn("Failed to set volume to muted of %s: %s", e->alsa_name, pa_alsa_strerror(errno));
|
||||
|
||||
return r;
|
||||
}
|
||||
|
|
@ -1017,7 +1017,7 @@ static int element_zero_volume(pa_alsa_element *e, snd_mixer_t *m) {
|
|||
r = snd_mixer_selem_set_capture_dB_all(me, 0, +1);
|
||||
|
||||
if (r < 0)
|
||||
pa_log_warn("Faile to set volume to 0dB of %s: %s", e->alsa_name, pa_alsa_strerror(errno));
|
||||
pa_log_warn("Failed to set volume to 0dB of %s: %s", e->alsa_name, pa_alsa_strerror(errno));
|
||||
|
||||
return r;
|
||||
}
|
||||
|
|
@ -1774,13 +1774,13 @@ static int element_set_option(pa_alsa_element *e, snd_mixer_t *m, int alsa_idx)
|
|||
r = snd_mixer_selem_set_capture_switch_all(me, alsa_idx);
|
||||
|
||||
if (r < 0)
|
||||
pa_log_warn("Faile to set switch of %s: %s", e->alsa_name, pa_alsa_strerror(errno));
|
||||
pa_log_warn("Failed to set switch of %s: %s", e->alsa_name, pa_alsa_strerror(errno));
|
||||
|
||||
} else {
|
||||
pa_assert(e->enumeration_use == PA_ALSA_ENUMERATION_SELECT);
|
||||
|
||||
if ((r = snd_mixer_selem_set_enum_item(me, 0, alsa_idx)) < 0)
|
||||
pa_log_warn("Faile to set enumeration of %s: %s", e->alsa_name, pa_alsa_strerror(errno));
|
||||
pa_log_warn("Failed to set enumeration of %s: %s", e->alsa_name, pa_alsa_strerror(errno));
|
||||
}
|
||||
|
||||
return r;
|
||||
|
|
|
|||
|
|
@ -236,7 +236,7 @@ int pa__init(pa_module*m) {
|
|||
goto fail;
|
||||
}
|
||||
|
||||
pa_log_info("Sucessfully opened database file '%s'.", fname);
|
||||
pa_log_info("Successfully opened database file '%s'.", fname);
|
||||
pa_xfree(fname);
|
||||
|
||||
for (card = pa_idxset_first(m->core->cards, &idx); card; card = pa_idxset_next(m->core->cards, &idx))
|
||||
|
|
|
|||
|
|
@ -1463,7 +1463,7 @@ int pa__init(pa_module*m) {
|
|||
goto fail;
|
||||
}
|
||||
|
||||
pa_log_info("Sucessfully opened database file '%s'.", fname);
|
||||
pa_log_info("Successfully opened database file '%s'.", fname);
|
||||
pa_xfree(fname);
|
||||
|
||||
/* Attempt to inject the devices into the list in priority order */
|
||||
|
|
|
|||
|
|
@ -496,7 +496,7 @@ int pa__init(pa_module*m) {
|
|||
goto fail;
|
||||
}
|
||||
|
||||
pa_log_info("Sucessfully opened database file '%s'.", fname);
|
||||
pa_log_info("Successfully opened database file '%s'.", fname);
|
||||
pa_xfree(fname);
|
||||
|
||||
for (sink = pa_idxset_first(m->core->sinks, &idx); sink; sink = pa_idxset_next(m->core->sinks, &idx))
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ static void thread_func(void *userdata) {
|
|||
if (errno == EINTR)
|
||||
continue;
|
||||
else if (errno != EAGAIN) {
|
||||
pa_log("Faile to read data from FIFO: %s", pa_cstrerror(errno));
|
||||
pa_log("Failed to read data from FIFO: %s", pa_cstrerror(errno));
|
||||
goto fail;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ static pa_hook_result_t sink_unlink_hook_callback(pa_core *c, pa_sink *sink, voi
|
|||
pa_log_info("Failed to move sink input %u \"%s\" to %s.", i->index,
|
||||
pa_strnull(pa_proplist_gets(i->proplist, PA_PROP_APPLICATION_NAME)), target->name);
|
||||
else
|
||||
pa_log_info("Sucessfully moved sink input %u \"%s\" to %s.", i->index,
|
||||
pa_log_info("Successfully moved sink input %u \"%s\" to %s.", i->index,
|
||||
pa_strnull(pa_proplist_gets(i->proplist, PA_PROP_APPLICATION_NAME)), target->name);
|
||||
}
|
||||
|
||||
|
|
@ -134,7 +134,7 @@ static pa_hook_result_t sink_input_move_fail_hook_callback(pa_core *c, pa_sink_i
|
|||
return PA_HOOK_OK;
|
||||
|
||||
} else {
|
||||
pa_log_info("Sucessfully moved sink input %u \"%s\" to %s.", i->index,
|
||||
pa_log_info("Successfully moved sink input %u \"%s\" to %s.", i->index,
|
||||
pa_strnull(pa_proplist_gets(i->proplist, PA_PROP_APPLICATION_NAME)), target->name);
|
||||
return PA_HOOK_STOP;
|
||||
}
|
||||
|
|
@ -199,7 +199,7 @@ static pa_hook_result_t source_unlink_hook_callback(pa_core *c, pa_source *sourc
|
|||
pa_log_info("Failed to move source output %u \"%s\" to %s.", o->index,
|
||||
pa_strnull(pa_proplist_gets(o->proplist, PA_PROP_APPLICATION_NAME)), target->name);
|
||||
else
|
||||
pa_log_info("Sucessfully moved source output %u \"%s\" to %s.", o->index,
|
||||
pa_log_info("Successfully moved source output %u \"%s\" to %s.", o->index,
|
||||
pa_strnull(pa_proplist_gets(o->proplist, PA_PROP_APPLICATION_NAME)), target->name);
|
||||
}
|
||||
|
||||
|
|
@ -225,7 +225,7 @@ static pa_hook_result_t source_output_move_fail_hook_callback(pa_core *c, pa_sou
|
|||
return PA_HOOK_OK;
|
||||
|
||||
} else {
|
||||
pa_log_info("Sucessfully moved source input %u \"%s\" to %s.", i->index,
|
||||
pa_log_info("Successfully moved source input %u \"%s\" to %s.", i->index,
|
||||
pa_strnull(pa_proplist_gets(i->proplist, PA_PROP_APPLICATION_NAME)), target->name);
|
||||
return PA_HOOK_STOP;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2055,7 +2055,7 @@ int pa__init(pa_module*m) {
|
|||
goto fail;
|
||||
}
|
||||
|
||||
pa_log_info("Sucessfully opened database file '%s'.", fname);
|
||||
pa_log_info("Successfully opened database file '%s'.", fname);
|
||||
pa_xfree(fname);
|
||||
|
||||
#ifdef HAVE_DBUS
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ static const char *command_names[PA_COMMAND_MAX] = {
|
|||
|
||||
[PA_COMMAND_SET_SINK_VOLUME] = "SET_SINK_VOLUME",
|
||||
[PA_COMMAND_SET_SINK_INPUT_VOLUME] = "SET_SINK_INPUT_VOLUME",
|
||||
[PA_COMMAND_SET_SOURCE_VOLUME] = "SET_SOURCE_VOLME",
|
||||
[PA_COMMAND_SET_SOURCE_VOLUME] = "SET_SOURCE_VOLUME",
|
||||
|
||||
[PA_COMMAND_SET_SINK_MUTE] = "SET_SINK_MUTE",
|
||||
[PA_COMMAND_SET_SOURCE_MUTE] = "SET_SOURCE_MUTE",
|
||||
|
|
|
|||
|
|
@ -218,7 +218,7 @@ int pa_pid_file_create(const char *procname) {
|
|||
if (procname)
|
||||
if ((ours = proc_name_ours(pid, procname)) < 0) {
|
||||
pa_log_warn("Could not check to see if pid %lu is a pulseaudio process. "
|
||||
"Asssuming it is and the daemon is already running.", (unsigned long) pid);
|
||||
"Assuming it is and the daemon is already running.", (unsigned long) pid);
|
||||
goto fail;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue