diff options
Diffstat (limited to 'emulators/rtc/files/rtc.c')
-rw-r--r-- | emulators/rtc/files/rtc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/rtc/files/rtc.c b/emulators/rtc/files/rtc.c index 5c3d8cf1c5b2..13e0f467e2f2 100644 --- a/emulators/rtc/files/rtc.c +++ b/emulators/rtc/files/rtc.c @@ -66,8 +66,8 @@ struct rtc_softc { struct { int freq; struct { - int opened:1; - int enabled:1; + unsigned int opened:1; + unsigned int enabled:1; } flags; struct callout rtc_handle; struct timespec lasttime; |