From 2a64ee4227840de4aebe2ebe1887dfd167831738 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 14 Jul 2005 13:17:14 +0000 Subject: [PATCH] r8466: it is not portable to assert() a va_list (it breaks on alpha for example) --- source/lib/appweb/ejs/ejsLib.c | 1 - 1 file changed, 1 deletion(-) diff --git a/source/lib/appweb/ejs/ejsLib.c b/source/lib/appweb/ejs/ejsLib.c index caae5b64958..b3e61ec3752 100644 --- a/source/lib/appweb/ejs/ejsLib.c +++ b/source/lib/appweb/ejs/ejsLib.c @@ -477,7 +477,6 @@ static void ejsErrorCore(Ejs* ep, const char *fmt, va_list args) char *errbuf, *msgbuf; mprAssert(ep); - mprAssert(args); msgbuf = NULL; mprAllocVsprintf(&msgbuf, MPR_MAX_STRING, fmt, args);