diff options
author | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-04-20 09:37:50 +0000 |
---|---|---|
committer | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-04-20 09:37:50 +0000 |
commit | f62afeb403b8b9243f83c4fbdcb9b1d11aa7d52d (patch) | |
tree | 3b4732806025807d5d805cc7caca565145be1d26 | |
parent | 0d126f42d500208e7fd2a25ed40ee3586cff3da2 (diff) |
Print error code if winStoreColorsShadowDDNL fails
-rw-r--r-- | hw/xwin/ChangeLog | 5 | ||||
-rw-r--r-- | hw/xwin/winshadddnl.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/hw/xwin/ChangeLog b/hw/xwin/ChangeLog index 8e2c1f860..d0adbded3 100644 --- a/hw/xwin/ChangeLog +++ b/hw/xwin/ChangeLog @@ -1,5 +1,10 @@ 2005-04-20 Alexander Gottwald <ago at freedesktop dot org> + * winshaddnl.c: + Print error code if winStoreColorsShadowDDNL fails + +2005-04-20 Alexander Gottwald <ago at freedesktop dot org> + * winlayouts.h: Removed layout "Français (Canada)" because it does not appear to match XKB layout "ca" and no user provided me with sufficient diff --git a/hw/xwin/winshadddnl.c b/hw/xwin/winshadddnl.c index d7204d358..33fa12b1b 100644 --- a/hw/xwin/winshadddnl.c +++ b/hw/xwin/winshadddnl.c @@ -1306,7 +1306,7 @@ winStoreColorsShadowDDNL (ColormapPtr pColormap, + pdefs[0].pixel); if (FAILED (ddrval)) { - ErrorF ("winStoreColorsShadowDDNL - SetEntries () failed\n"); + ErrorF ("winStoreColorsShadowDDNL - SetEntries () failed: %08x\n", ddrval); return FALSE; } |