diff options
Diffstat (limited to 'hw/xfree86/dummylib/xf86errorfverb.c')
-rw-r--r-- | hw/xfree86/dummylib/xf86errorfverb.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hw/xfree86/dummylib/xf86errorfverb.c b/hw/xfree86/dummylib/xf86errorfverb.c index 61bff15a5..61c3e02a2 100644 --- a/hw/xfree86/dummylib/xf86errorfverb.c +++ b/hw/xfree86/dummylib/xf86errorfverb.c @@ -1,10 +1,9 @@ -/* $XFree86: xc/programs/Xserver/hw/xfree86/dummylib/xf86errorfverb.c,v 1.1 2000/02/13 03:06:41 dawes Exp $ */ +/* $XFree86: xc/programs/Xserver/hw/xfree86/dummylib/xf86errorfverb.c,v 1.2 2003/09/09 03:20:38 dawes Exp $ */ #include "X.h" #include "os.h" #include "xf86.h" #include "xf86Priv.h" -#include "dummylib.h" /* * Utility functions required by libxf86_os. @@ -16,7 +15,7 @@ xf86ErrorFVerb(int verb, const char *format, ...) va_list ap; va_start(ap, format); - VErrorFVerb(verb, format, ap); + LogVWrite(verb, format, ap); va_end(ap); } |