# HG changeset patch # User Jun Wu # Date 1460321765 -3600 # Node ID 584e0716c7afe40f544fd1f955ace608ff872820 # Parent 3819c349b1947964573e014a36c00801356d4123 chg: fix spelling in the error message about error waiting for cmdserver This is a trivial spelling and grammar fix. diff -r 3819c349b194 -r 584e0716c7af contrib/chg/chg.c --- a/contrib/chg/chg.c Sun Apr 10 11:02:58 2016 -0700 +++ b/contrib/chg/chg.c Sun Apr 10 21:56:05 2016 +0100 @@ -266,7 +266,7 @@ } else if (WIFSIGNALED(pst)) { abortmsg("cmdserver killed by signal %d", WTERMSIG(pst)); } else { - abortmsg("error white waiting cmdserver"); + abortmsg("error while waiting for cmdserver"); } return NULL; }