From 89c5e1f681107b6d9f8ba7f761c388d1e2052fe4 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sun, 24 Apr 2016 12:57:58 +0200 Subject: Various cleanups suggested by static analyzer (nw) --- src/osd/watchdog.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/osd/watchdog.h') diff --git a/src/osd/watchdog.h b/src/osd/watchdog.h index dbcccf43abf..415c1269882 100644 --- a/src/osd/watchdog.h +++ b/src/osd/watchdog.h @@ -23,8 +23,8 @@ public: void reset() { m_event.set(); } osd_event & event(void) { return m_event; } - INT32 do_exit(void) { return m_do_exit; } - osd_ticks_t getTimeout(void) { return m_timeout; } + INT32 do_exit(void) const { return m_do_exit; } + osd_ticks_t getTimeout(void) const { return m_timeout; } void setTimeout(int timeout); private: osd_event m_event; -- cgit v1.2.3