diff options
author | marha <marha@users.sourceforge.net> | 2012-09-05 22:42:04 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-09-05 22:42:04 +0200 |
commit | 34f4ab1de460640c9a8559952c58a9f1d0ee3402 (patch) | |
tree | 63d90982b00f24ddc78636f9ced3c2478524ce20 | |
parent | 2d75403a3ac499a8a2bf1a78843dd2df9c00768c (diff) | |
download | vcxsrv-34f4ab1de460640c9a8559952c58a9f1d0ee3402.tar.gz vcxsrv-34f4ab1de460640c9a8559952c58a9f1d0ee3402.tar.bz2 vcxsrv-34f4ab1de460640c9a8559952c58a9f1d0ee3402.zip |
Changed fatal error a little
-rw-r--r-- | xorg-server/hw/xwin/winerror.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xorg-server/hw/xwin/winerror.c b/xorg-server/hw/xwin/winerror.c index d5f497fda..9638bdcb1 100644 --- a/xorg-server/hw/xwin/winerror.c +++ b/xorg-server/hw/xwin/winerror.c @@ -102,11 +102,11 @@ OsVendorFatalError(const char *f, va_list args) } LogClose(EXIT_ERR_ABORT); - winMessageBoxF ( - "A fatal error has occurred and " PROJECT_NAME " will now exit.\n" \ - "%s\n" - "Please open %s for more information.\n", - MB_ICONERROR, g_FatalErrorMessage, (g_pszLogFile?g_pszLogFile:"the logfile")); + winMessageBoxF ( + "Error: %s\n\n"\ + PROJECT_NAME " will now exit.\n\n" \ + "Please open %s for more information.\n", + MB_ICONERROR, g_FatalErrorMessage, (g_pszLogFile?g_pszLogFile:"the logfile")); } /* |