[asterisk-commits] mnicholson: branch mnicholson/asttest r167263 - /team/mnicholson/asttest/astt...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Jan 6 14:55:45 CST 2009
Author: mnicholson
Date: Tue Jan 6 14:55:45 2009
New Revision: 167263
URL: http://svn.digium.com/view/asterisk?view=rev&rev=167263
Log:
Don't add a new line in lua_ts_log().
* asttest/lib/lua.c (lua_ts_log): don't add a new line to the output
Modified:
team/mnicholson/asttest/asttest/lib/lua.c
Modified: team/mnicholson/asttest/asttest/lib/lua.c
URL: http://svn.digium.com/view/asterisk/team/mnicholson/asttest/asttest/lib/lua.c?view=diff&rev=167263&r1=167262&r2=167263
==============================================================================
--- team/mnicholson/asttest/asttest/lib/lua.c (original)
+++ team/mnicholson/asttest/asttest/lib/lua.c Tue Jan 6 14:55:45 2009
@@ -52,7 +52,7 @@
struct testsuite *ts = push_ts(L);
const char *name = push_test_name(L);
- ts_log(ts, name, "%s\n", string);
+ ts_log(ts, name, "%s", string);
return 0;
}
More information about the asterisk-commits
mailing list