local: fix typo in strerror() call

This commit is contained in:
Bryan Christianson 2016-08-19 18:19:52 +02:00 committed by Miroslav Lichvar
parent 7a1ebc3467
commit 02844e9b01

View file

@ -361,7 +361,7 @@ LCL_ReadRawTime(struct timespec *ts)
struct timeval tv;
if (gettimeofday(&tv, NULL) < 0)
LOG_FATAL(LOGF_Local, "gettimeofday() failed : %s", stderror(errno));
LOG_FATAL(LOGF_Local, "gettimeofday() failed : %s", strerror(errno));
UTI_TimevalToTimespec(&tv, ts);
#endif