Fix format issue

This has been wrong for awhile, but was only now flagged by CI
on gerrit.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I2a66fe6e727922d48b77e99feeebd9d5b95f617f
diff --git a/phosphor-logging/elog.hpp b/phosphor-logging/elog.hpp
index 045e99d..365080c 100644
--- a/phosphor-logging/elog.hpp
+++ b/phosphor-logging/elog.hpp
@@ -147,7 +147,8 @@
  *  @param[in] i_args - Metadata fields to be added to the journal entry
  */
 template <typename T, typename... Args>
-[[noreturn]] void elog(Args... i_args) {
+[[noreturn]] void elog(Args... i_args)
+{
     // Validate if the exception is derived from sdbusplus::exception.
     static_assert(std::is_base_of<sdbusplus::exception::exception, T>::value,
                   "T must be a descendant of sdbusplus::exception::exception");