remove all occurences of

pa_logXXX(__FILE__":  
   
and replace them by 
  
   pa_logXXX("



git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1272 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2006-08-18 21:38:40 +00:00
parent 1bc62d5ec6
commit e385d93e5a
87 changed files with 714 additions and 714 deletions

View file

@ -49,12 +49,12 @@ int main(PA_GCC_UNUSED int argc, PA_GCC_UNUSED char*argv[]) {
fd_set ifds, ofds;
if (pa_pid_file_check_running(&pid) < 0) {
pa_log(__FILE__": no PulseAudio daemon running");
pa_log("no PulseAudio daemon running");
goto fail;
}
if ((fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0) {
pa_log(__FILE__": socket(PF_UNIX, SOCK_STREAM, 0): %s", strerror(errno));
pa_log("socket(PF_UNIX, SOCK_STREAM, 0): %s", strerror(errno));
goto fail;
}
@ -66,7 +66,7 @@ int main(PA_GCC_UNUSED int argc, PA_GCC_UNUSED char*argv[]) {
int r;
if ((r = connect(fd, (struct sockaddr*) &sa, sizeof(sa))) < 0 && (errno != ECONNREFUSED && errno != ENOENT)) {
pa_log(__FILE__": connect(): %s", strerror(errno));
pa_log("connect(): %s", strerror(errno));
goto fail;
}
@ -74,7 +74,7 @@ int main(PA_GCC_UNUSED int argc, PA_GCC_UNUSED char*argv[]) {
break;
if (pa_pid_file_kill(SIGUSR2, NULL) < 0) {
pa_log(__FILE__": failed to kill PulseAudio daemon.");
pa_log("failed to kill PulseAudio daemon.");
goto fail;
}
@ -82,7 +82,7 @@ int main(PA_GCC_UNUSED int argc, PA_GCC_UNUSED char*argv[]) {
}
if (i >= 5) {
pa_log(__FILE__": daemon not responding.");
pa_log("daemon not responding.");
goto fail;
}
@ -97,7 +97,7 @@ int main(PA_GCC_UNUSED int argc, PA_GCC_UNUSED char*argv[]) {
for (;;) {
if (select(FD_SETSIZE, &ifds, &ofds, NULL, NULL) < 0) {
pa_log(__FILE__": select(): %s", strerror(errno));
pa_log("select(): %s", strerror(errno));
goto fail;
}
@ -109,7 +109,7 @@ int main(PA_GCC_UNUSED int argc, PA_GCC_UNUSED char*argv[]) {
if (r == 0)
break;
pa_log(__FILE__": read(): %s", strerror(errno));
pa_log("read(): %s", strerror(errno));
goto fail;
}
@ -125,7 +125,7 @@ int main(PA_GCC_UNUSED int argc, PA_GCC_UNUSED char*argv[]) {
if (r == 0)
break;
pa_log(__FILE__": read(): %s", strerror(errno));
pa_log("read(): %s", strerror(errno));
goto fail;
}
@ -138,7 +138,7 @@ int main(PA_GCC_UNUSED int argc, PA_GCC_UNUSED char*argv[]) {
assert(obuf_length);
if ((r = write(1, obuf + obuf_index, obuf_length)) < 0) {
pa_log(__FILE__": write(): %s", strerror(errno));
pa_log("write(): %s", strerror(errno));
goto fail;
}
@ -152,7 +152,7 @@ int main(PA_GCC_UNUSED int argc, PA_GCC_UNUSED char*argv[]) {
assert(ibuf_length);
if ((r = write(fd, ibuf + ibuf_index, ibuf_length)) < 0) {
pa_log(__FILE__": write(): %s", strerror(errno));
pa_log("write(): %s", strerror(errno));
goto fail;
}

View file

@ -92,7 +92,7 @@ int main(int argc, char *argv[]) {
}
if (!(d = XOpenDisplay(dname))) {
pa_log(__FILE__": XOpenDisplay() failed");
pa_log("XOpenDisplay() failed");
goto finish;
}