|
37 | 37 | * |
38 | 38 | * |
39 | 39 | * IDENTIFICATION |
40 | | - * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.509 2007/01/2218:31:51 momjian Exp $ |
| 40 | + * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.510 2007/01/2219:38:05 momjian Exp $ |
41 | 41 | * |
42 | 42 | * NOTES |
43 | 43 | * |
@@ -2435,8 +2435,9 @@ LogChildExit(int lev, const char *procname, int pid, int exitstatus) |
2435 | 2435 | /*------ |
2436 | 2436 | translator: %s is a noun phrase describing a child process, such as |
2437 | 2437 | "server process" */ |
2438 | | -(errmsg("%s (PID %d) was terminated by exception %X\nSee http://source.winehq.org/source/include/ntstatus.h for a description\nof the hex value.", |
2439 | | -procname,pid,WTERMSIG(exitstatus)))); |
| 2438 | +(errmsg("%s (PID %d) was terminated by exception %X", |
| 2439 | +procname,pid,WTERMSIG(exitstatus)), |
| 2440 | +errhint("See http://source.winehq.org/source/include/ntstatus.h for a description of the hex value."))); |
2440 | 2441 | #endif |
2441 | 2442 | else |
2442 | 2443 | ereport(lev, |
|