clang-tidy: correct include directives
Replaced angled brackets with quotes in include directives
for local headers in watchdog folder to resolve clang-tidy errors
Sample error:
'''
openpower-debug-collector/watchdog/watchdog_logging.cpp:4:10: error: 'watchdog_common.hpp'
file not found with <angled> include; use "quotes" instead [clang-diagnostic-error]
4 | #include <watchdog_common.hpp>
| ^~~~~~~~~~~~~~~~~~~~~
| "watchdog_common.hpp"
'''
Change-Id: I99810f37d74db2fda9b59310b0ffe6a8456e4239
Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
diff --git a/watchdog/watchdog_dbus.cpp b/watchdog/watchdog_dbus.cpp
index c3a797d..204aecd 100644
--- a/watchdog/watchdog_dbus.cpp
+++ b/watchdog/watchdog_dbus.cpp
@@ -1,8 +1,10 @@
+#include "watchdog_dbus.hpp"
+
+#include "watchdog_logging.hpp"
+
#include <unistd.h>
#include <phosphor-logging/lg2.hpp>
-#include <watchdog_dbus.hpp>
-#include <watchdog_logging.hpp>
#include <string>
#include <vector>