server: Make crash error message more explicit.

This commit is contained in:
Alexandre Julliard 2007-06-25 14:13:21 +02:00
parent 9c08c46e1f
commit 6d1605a6a4
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ static void do_sigchld( int signum )
/* SIGSEGV handler */
static void do_sigsegv( int signum )
{
fprintf( stderr, "wineserver crashed, please report this.\n");
fprintf( stderr, "wineserver crashed, please enable coredumps (ulimit -c unlimited) and restart.\n");
abort();
}