summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-04-21 14:46:24 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-04-21 14:46:24 -0700
commit249695649bb25f500d1525f655ca317428ea6044 (patch)
tree53d5702dfa03d13c9377502c4854dade37a52e8b
parent7b5ba88d06ca88e11a8127d12f3d7685a473684e (diff)
Fix genererate typo in bmtoa error messages
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-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);
}