summaryrefslogtreecommitdiffstats
path: root/term-utils/scriptreplay.c
diff options
context:
space:
mode:
Diffstat (limited to 'term-utils/scriptreplay.c')
-rw-r--r--term-utils/scriptreplay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/term-utils/scriptreplay.c b/term-utils/scriptreplay.c
index b4549ef16..51985cda8 100644
--- a/term-utils/scriptreplay.c
+++ b/term-utils/scriptreplay.c
@@ -211,7 +211,7 @@ main(int argc, char *argv[])
/* ignore the first typescript line */
while((c = fgetc(sfile)) != EOF && c != '\n');
- for(line = 0; ; line++) {
+ for(line = 1; ; line++) {
double delay;
size_t blk;
char nl;
@@ -223,7 +223,7 @@ main(int argc, char *argv[])
err(EXIT_FAILURE,
_("failed to read timing file %s"), tname);
errx(EXIT_FAILURE,
- _("timings file %s: %lu: unexpected format"),
+ _("timing file %s: line %lu: unexpected format"),
tname, line);
}
delay /= divi;