From: Zbigniew Jędrzejewski-Szmek Date: Thu, 25 Jan 2024 17:34:08 +0000 (+0100) Subject: pstore: align table X-Git-Tag: v256-rc1~1015^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9af1281ed7d0765c2842bc35e6ea525261793a9c;p=thirdparty%2Fsystemd.git pstore: align table --- diff --git a/src/pstore/pstore.c b/src/pstore/pstore.c index 8f32a0a2ae1..835348f90e2 100644 --- a/src/pstore/pstore.c +++ b/src/pstore/pstore.c @@ -56,9 +56,9 @@ typedef enum PStoreStorage { } PStoreStorage; static const char* const pstore_storage_table[_PSTORE_STORAGE_MAX] = { - [PSTORE_STORAGE_NONE] = "none", + [PSTORE_STORAGE_NONE] = "none", [PSTORE_STORAGE_EXTERNAL] = "external", - [PSTORE_STORAGE_JOURNAL] = "journal", + [PSTORE_STORAGE_JOURNAL] = "journal", }; DEFINE_PRIVATE_STRING_TABLE_LOOKUP(pstore_storage, PStoreStorage); @@ -279,6 +279,7 @@ static int process_dmesg_files(PStoreList *list) { } else log_debug("Unknown backend, ignoring \"%s\".", pe->dirent.d_name); } + return 0; }