diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.c b/src/main.c index 0f2925586..1b2e6ee69 100644 --- a/src/main.c +++ b/src/main.c @@ -3342,8 +3342,8 @@ time_diff(then, now) } void -time_msg(msg, tv_start) - char *msg; +time_msg(mesg, tv_start) + char *mesg; void *tv_start; /* only for do_source: start time; actually (struct timeval *) */ { @@ -3352,7 +3352,7 @@ time_msg(msg, tv_start) if (time_fd != NULL) { - if (strstr(msg, "STARTING") != NULL) + if (strstr(mesg, "STARTING") != NULL) { gettimeofday(&start, NULL); prev_timeval = start; @@ -3370,7 +3370,7 @@ time_msg(msg, tv_start) fprintf(time_fd, " "); time_diff(&prev_timeval, &now); prev_timeval = now; - fprintf(time_fd, ": %s\n", msg); + fprintf(time_fd, ": %s\n", mesg); } } |