meson: reformat with meson formatter

Apply the `meson format` results.

Change-Id: I1038d734aa030fc63345280a846c34c5b70b0d16
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/meson.build b/meson.build
index f80868c..a78f386 100644
--- a/meson.build
+++ b/meson.build
@@ -2,11 +2,7 @@
     'openpower-debug-collector',
     'cpp',
     meson_version: '>=1.1.1',
-    default_options: [
-        'warning_level=3',
-        'werror=true',
-        'cpp_std=c++23'
-    ],
+    default_options: ['warning_level=3', 'werror=true', 'cpp_std=c++23'],
     license: 'Apache-2.0',
     version: '1.0.0',
 )
@@ -23,10 +19,7 @@
 
 phosphorlogging = dependency(
     'phosphor-logging',
-    fallback: [
-        'phosphor-logging',
-        'phosphor_logging_dep'
-    ]
+    fallback: ['phosphor-logging', 'phosphor_logging_dep'],
 )
 
 realpath_prog = find_program('realpath')
@@ -37,7 +30,7 @@
     extra_deps = [
         cxx.find_library('pdbg'),
         cxx.find_library('libdt-api'),
-        cxx.find_library('phal')
+        cxx.find_library('phal'),
     ]
     subdir('watchdog')
 else
@@ -49,27 +42,24 @@
 configure_file(output: 'config.h', configuration: conf_data)
 
 if get_option('dump-collection').allowed()
-     subdir('dump')
+    subdir('dump')
 endif
 
-deps = [
-    CLI11_dep,
-    sdbusplus_dep,
-    phosphorlogging,
-    extra_deps
-]
+deps = [CLI11_dep, sdbusplus_dep, phosphorlogging, extra_deps]
 
-executable('watchdog_timeout',
+executable(
+    'watchdog_timeout',
     'watchdog_timeout.cpp',
     dependencies: deps,
     link_with: watchdog_lib,
     implicit_include_directories: true,
-    install: true
+    install: true,
 )
 
-executable('checkstop_app',
+executable(
+    'checkstop_app',
     'checkstop_app.cpp',
     dependencies: deps,
     implicit_include_directories: true,
-    install: true
+    install: true,
 )