summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/watchdog.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-04-24 12:57:58 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-04-24 12:58:31 +0200
commit89c5e1f681107b6d9f8ba7f761c388d1e2052fe4 (patch)
treec5ce4530d0c03fa1c04021844272b82b7b7ebcbc /src/osd/watchdog.h
parentef0968b87042040e1f0e18c84ce804f744f8e23e (diff)
Various cleanups suggested by static analyzer (nw)
Diffstat (limited to 'src/osd/watchdog.h')
-rw-r--r--src/osd/watchdog.h4
1 files changed, 2 insertions, 2 deletions
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;