Description: postLogMsg expects a pointer in the final position, give it
Author: Iain Lane <laney@ubuntu.com>
Forwarded: not-needed

Index: ubuntu/rts/eventlog/EventLog.c
===================================================================
--- ubuntu.orig/rts/eventlog/EventLog.c	2011-01-14 09:48:08.957057562 +0000
+++ ubuntu/rts/eventlog/EventLog.c	2011-01-14 09:48:21.928060333 +0000
@@ -438,7 +438,7 @@
 
 void postUserMsg(Capability *cap, char *msg, va_list ap)
 {
-    postLogMsg(&capEventBuf[cap->no], EVENT_USER_MSG, msg, ap);
+    postLogMsg(&capEventBuf[cap->no], EVENT_USER_MSG, msg, &ap);
 }    
 
 void closeBlockMarker (EventsBuf *ebuf)
