summaryrefslogtreecommitdiff
path: root/xserver/hw/xwin/winerror.c
diff options
context:
space:
mode:
Diffstat (limited to 'xserver/hw/xwin/winerror.c')
-rw-r--r--xserver/hw/xwin/winerror.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/xserver/hw/xwin/winerror.c b/xserver/hw/xwin/winerror.c
index b49f9e59d..784772f5f 100644
--- a/xserver/hw/xwin/winerror.c
+++ b/xserver/hw/xwin/winerror.c
@@ -39,22 +39,18 @@
void
OsVendorVErrorF(const char *pszFormat, va_list va_args)
{
-#if defined(XWIN_CLIPBOARD) || defined (XWIN_MULTIWINDOW)
/* make sure the clipboard and multiwindow threads do not interfere the
* main thread */
static pthread_mutex_t s_pmPrinting = PTHREAD_MUTEX_INITIALIZER;
/* Lock the printing mutex */
pthread_mutex_lock(&s_pmPrinting);
-#endif
/* Print the error message to a log file, could be stderr */
LogVWrite(0, pszFormat, va_args);
-#if defined(XWIN_CLIPBOARD) || defined (XWIN_MULTIWINDOW)
/* Unlock the printing mutex */
pthread_mutex_unlock(&s_pmPrinting);
-#endif
}
#endif