From 918d59433167f3b0dcbb7954c9181a1a77837f16 Mon Sep 17 00:00:00 2001 From: sobomax Date: Fri, 8 Sep 2017 18:32:13 +0000 Subject: [PATCH] Correct bintime32 declaration: uint32_t sec -> time32_t sec. Submitted by: jhb MFC after: 1 month --- sys/compat/freebsd32/freebsd32.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/compat/freebsd32/freebsd32.h b/sys/compat/freebsd32/freebsd32.h index 37cc66a29653..7d1887b6a944 100644 --- a/sys/compat/freebsd32/freebsd32.h +++ b/sys/compat/freebsd32/freebsd32.h @@ -79,7 +79,7 @@ struct itimerspec32 { } while (0) struct bintime32 { - uint32_t sec; + time32_t sec; uint32_t frac[2]; }; #define BT_CP(src, dst, fld) do { \