[xiph-commits] r17717 - trunk/ao/src/plugins/roar
xiphmont at svn.xiph.org
xiphmont at svn.xiph.org
Mon Dec 6 12:04:43 PST 2010
Author: xiphmont
Date: 2010-12-06 12:04:43 -0800 (Mon, 06 Dec 2010)
New Revision: 17717
Modified:
trunk/ao/src/plugins/roar/ao_roar.c
Log:
Correct log report arguments to match format
Modified: trunk/ao/src/plugins/roar/ao_roar.c
===================================================================
--- trunk/ao/src/plugins/roar/ao_roar.c 2010-12-06 20:00:10 UTC (rev 17716)
+++ trunk/ao/src/plugins/roar/ao_roar.c 2010-12-06 20:04:43 UTC (rev 17717)
@@ -103,13 +103,13 @@
switch (errtype) {
case ERROR:
- aerror(_format "\n", text, errmsg, line);
+ aerror(_format "\n", text, errmsg);
break;
case WARN:
- awarn(_format "\n", text, errmsg, line);
+ awarn(_format "\n", text, errmsg);
break;
case INFO:
- ainfo(_format "\n", text, errmsg, line);
+ ainfo(_format "\n", text, errmsg);
break;
case VERBOSE:
averbose(_format_dbg "\n", text, errmsg, line);
More information about the commits
mailing list