mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-10 13:29:58 -05:00
drop a couple of WARNING prefixes in log messages, since we have pa_log_warn anyway for marking warnings especially
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1842 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
19eb7ebd4d
commit
d3b898513c
13 changed files with 22 additions and 24 deletions
|
|
@ -1051,7 +1051,7 @@ int pa__init(pa_module*m) {
|
|||
}
|
||||
|
||||
if (pa_idxset_size(u->outputs) <= 1)
|
||||
pa_log_warn("WARNING: No slave sinks specified.");
|
||||
pa_log_warn("No slave sinks specified.");
|
||||
|
||||
u->sink_new_slot = NULL;
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ int pa__init(pa_module*m) {
|
|||
}
|
||||
|
||||
if (pa_loop_write(fd, &x, sizeof(x), NULL) != sizeof(x))
|
||||
pa_log_warn("WARNING: write(%u, 1, 1) failed: %s", fd, pa_cstrerror(errno));
|
||||
pa_log_warn("write(%u, 1, 1) failed: %s", fd, pa_cstrerror(errno));
|
||||
|
||||
pa_assert_se(pa_close(fd) == 0);
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ int pa__init(pa_module*m) {
|
|||
}
|
||||
|
||||
if (kill(pid, SIGUSR1) < 0)
|
||||
pa_log_warn("WARNING: kill(%u) failed: %s", pid, pa_cstrerror(errno));
|
||||
pa_log_warn("kill(%u) failed: %s", pid, pa_cstrerror(errno));
|
||||
|
||||
pa_module_unload_request(m);
|
||||
|
||||
|
|
|
|||
|
|
@ -210,7 +210,7 @@ static int handle_response(struct userdata *u) {
|
|||
/* Process latency info */
|
||||
u->latency = (pa_usec_t) ((double) (*(int32_t*) u->read_data) * 1000000 / 44100);
|
||||
if (u->latency > 10000000) {
|
||||
pa_log("WARNING! Invalid latency information received from server");
|
||||
pa_log_warn("Invalid latency information received from server");
|
||||
u->latency = 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue