- Fix warning in windows compile, in set_recvtimestamp.

This commit is contained in:
W.C.A. Wijngaards 2023-05-11 09:32:59 +02:00
parent b2cba7b707
commit 1fb78afc29
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,6 @@
11 May 2023: Wouter
- Fix warning in windows compile, in set_recvtimestamp.
4 May 2023: Wouter
- Fix #885: Error: util/configlexer.c: No such file or directory,
adds error messages explaining to install flex and bison.

View File

@ -1130,6 +1130,7 @@ set_recvtimestamp(int s)
return 1;
#else
log_err("packets timestamping is not supported on this platform");
(void)s;
return 0;
#endif
}