summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bmtoa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bmtoa.c b/bmtoa.c
index 7156d1a..4281e22 100644
--- a/bmtoa.c
+++ b/bmtoa.c
@@ -78,7 +78,7 @@ copy_stdin (void)
#ifndef HAVE_MKSTEMP
if (mktemp (tmpfilename) == NULL) {
fprintf (stderr,
- "%s: unable to genererate temporary file name for stdin.\n",
+ "%s: unable to generate temporary file name for stdin.\n",
ProgramName);
exit (1);
}
@@ -88,7 +88,7 @@ copy_stdin (void)
if ((fd = mkstemp(tmpfilename)) < 0) {
fprintf (stderr,
- "%s: unable to genererate temporary file name for stdin.\n",
+ "%s: unable to generate temporary file name for stdin.\n",
ProgramName);
exit (1);
}