diff options
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index a2d016380..d33d6477e 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -2670,8 +2670,8 @@ int ndpi_vsnprintf(char * str, size_t size, char const * format, va_list va_args /* ******************************************* */ -struct tm *ndpi_gmtime_r(const time_t *restrict timep, - struct tm *restrict result) +struct tm *ndpi_gmtime_r(const time_t *timep, + struct tm *result) { #ifdef WIN32 gmtime_s(result, timep); |