Skip to content

Commit

Permalink
detime: remove a dummy arg
Browse files Browse the repository at this point in the history
  • Loading branch information
sudhackar authored and zardus committed Jun 1, 2020
1 parent dd96c13 commit 233e1cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/detime.c
Expand Up @@ -38,7 +38,7 @@ int gettimeofday(struct timeval *tv, struct timezone *tz)
tz->tz_minuteswest = minwest_str ? atoi(minwest_str) : 0;
tz->tz_dsttime = dst_str ? atoi(dst_str) : 0;

preeny_debug("gettimeofday tz frozen at -%d minm, DST: %d\n", tz->tz_minuteswest, tv->tv_usec, tz->tz_dsttime);
preeny_debug("gettimeofday tz frozen at -%d minm, DST: %d\n", tz->tz_minuteswest, tz->tz_dsttime);
}

return 0;
Expand Down

0 comments on commit 233e1cb

Please sign in to comment.