1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 12:02:47 -05:00

cygtermd: remove all uses of 'FIXME' as program name.

There was a while when I hadn't decided what the name of the program
was going to be, and apparently once I did I never got round to
substituting it back in everywhere.
This commit is contained in:
Simon Tatham
2018-10-06 11:55:56 +01:00
parent 6c0f22bb9f
commit 62f630d4b3
4 changed files with 10 additions and 10 deletions

View File

@ -36,7 +36,7 @@ void sigchld(int signum)
void fatal(const char *fmt, ...)
{
va_list ap;
fprintf(stderr, "FIXME: ");
fprintf(stderr, "cygtermd: ");
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);