diff options
author | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-05-02 14:07:31 +0000 |
---|---|---|
committer | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-05-02 14:07:31 +0000 |
commit | baa0cfc15442287557e44fa2614d89ab0b5c2539 (patch) | |
tree | bf44fd23bd4abddfd947da3e9897a7fc7f13605e | |
parent | bc977945a53206d70ef9817d6ede4137eb5f7e3c (diff) |
Print correct logfile in FatalError messagesco_port_update-base
-rw-r--r-- | hw/xwin/ChangeLog | 5 | ||||
-rw-r--r-- | hw/xwin/winerror.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/hw/xwin/ChangeLog b/hw/xwin/ChangeLog index 2a4587d1f..20977edb0 100644 --- a/hw/xwin/ChangeLog +++ b/hw/xwin/ChangeLog @@ -1,3 +1,8 @@ +2005-05-02 Alexander Gottwald <ago at freedesktop dot org> + + * winerror.c: + Print correct logfile in FatalError message + 2005-04-19 Alexander Gottwald <ago at freedesktop dot org> * winmultiwindowwndproc.c: diff --git a/hw/xwin/winerror.c b/hw/xwin/winerror.c index 8436d7f92..696142ed2 100644 --- a/hw/xwin/winerror.c +++ b/hw/xwin/winerror.c @@ -32,6 +32,7 @@ /* References to external symbols */ extern char * g_pszCommandLine; +extern char * g_pszLogFile; extern Bool g_fSilentFatalError; @@ -80,8 +81,8 @@ OsVendorFatalError (void) winMessageBoxF ( "A fatal error has occurred and " PROJECT_NAME " will now exit.\n" \ - "Please open /tmp/XWin.log for more information.\n", - MB_ICONERROR); + "Please open %s for more information.\n", + MB_ICONERROR, (g_pszLogFile?g_pszLogFile:"the logfile")); } #endif |