diff options
Diffstat (limited to 'src/osd/watchdog.cpp')
-rw-r--r-- | src/osd/watchdog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/watchdog.cpp b/src/osd/watchdog.cpp index 09f720b7fcc..4e5177cd300 100644 --- a/src/osd/watchdog.cpp +++ b/src/osd/watchdog.cpp @@ -43,7 +43,7 @@ void osd_watchdog::setTimeout(int timeout) void *osd_watchdog::watchdog_thread(void *param) { - osd_watchdog *const thiz(reinterpret_cast<osd_watchdog *>(param)); + auto *const thiz(reinterpret_cast<osd_watchdog *>(param)); while (true) { |