[pulseaudio-commits] r1122 - in /trunk/src/daemon: daemon-conf.c main.c
svnmailer-noreply at 0pointer.de
svnmailer-noreply at 0pointer.de
Thu Jul 20 06:28:51 PDT 2006
Author: ossman
Date: Thu Jul 20 15:28:50 2006
New Revision: 1122
URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=1122&root=pulseaudio&view=rev
Log:
Fix incorrect call to nonexistant pa_log_warning().
Modified:
trunk/src/daemon/daemon-conf.c
trunk/src/daemon/main.c
Modified: trunk/src/daemon/daemon-conf.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/daemon/daemon-conf.c?rev=1122&root=pulseaudio&r1=1121&r2=1122&view=diff
==============================================================================
--- trunk/src/daemon/daemon-conf.c (original)
+++ trunk/src/daemon/daemon-conf.c Thu Jul 20 15:28:50 2006
@@ -220,7 +220,7 @@
r->value = k >= 0 ? (rlim_t) k : 0;
}
#else
- pa_log_warning(__FILE__": [%s:%u] rlimit not supported on this platform.", filename, line);
+ pa_log_warn(__FILE__": [%s:%u] rlimit not supported on this platform.", filename, line);
#endif
return 0;
Modified: trunk/src/daemon/main.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/daemon/main.c?rev=1122&root=pulseaudio&r1=1121&r2=1122&view=diff
==============================================================================
--- trunk/src/daemon/main.c (original)
+++ trunk/src/daemon/main.c Thu Jul 20 15:28:50 2006
@@ -437,7 +437,7 @@
}
if (real_root && !conf->system_instance) {
- pa_log_warning(__FILE__": This program is not intended to be run as root (unless --system is specified).");
+ pa_log_warn(__FILE__": This program is not intended to be run as root (unless --system is specified).");
} else if (!real_root && conf->system_instance) {
pa_log(__FILE__": Root priviliges required.");
goto finish;
More information about the pulseaudio-commits
mailing list