aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_watch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_watch.cpp')
-rw-r--r--src/modules/m_watch.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_watch.cpp b/src/modules/m_watch.cpp
index 6a0a87568..de193535b 100644
--- a/src/modules/m_watch.cpp
+++ b/src/modules/m_watch.cpp
@@ -144,7 +144,7 @@ class CommandWatch : public SplitCommand
if (parameters.empty())
{
HandleList(user, false);
- return CMD_SUCCESS;
+ return CmdResult::SUCCESS;
}
bool watch_l_done = false;
@@ -179,7 +179,7 @@ class CommandWatch : public SplitCommand
HandleStats(user);
}
}
- return CMD_SUCCESS;
+ return CmdResult::SUCCESS;
}
};