SDL: storage: Static analysis fix

From 26b71d14e9737270b60e14270334d9b3f3eb3235 Mon Sep 17 00:00:00 2001
From: Ethan Lee <[EMAIL REDACTED]>
Date: Thu, 25 Apr 2024 19:40:07 -0400
Subject: [PATCH] storage: Static analysis fix

---
 src/storage/SDL_storage.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/storage/SDL_storage.c b/src/storage/SDL_storage.c
index dff355d2446b4..c0e2de4e39b86 100644
--- a/src/storage/SDL_storage.c
+++ b/src/storage/SDL_storage.c
@@ -27,6 +27,7 @@
 /* Available title storage drivers */
 static TitleStorageBootStrap *titlebootstrap[] = {
     &GENERIC_titlebootstrap,
+    NULL
 };
 
 /* Available user storage drivers */
@@ -35,6 +36,7 @@ static UserStorageBootStrap *userbootstrap[] = {
     &STEAM_userbootstrap,
 #endif
     &GENERIC_userbootstrap,
+    NULL
 };
 
 struct SDL_Storage