From a3241aa9b29c0c12095a0ed71e26cb1d001dd963 Mon Sep 17 00:00:00 2001 From: Nathan Strong Date: Sat, 25 Sep 2021 14:03:29 -0700 Subject: [PATCH] fix missing semicolon --- configuration.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.c b/configuration.c index 18af106613..f62f31692e 100644 --- a/configuration.c +++ b/configuration.c @@ -2963,7 +2963,7 @@ static config_file_t *open_default_config_file(void) #ifndef RARCH_CONSOLE char application_data[PATH_MAX_LENGTH]; bool has_application_data = false; - application_data[0] = '\0' + application_data[0] = '\0'; #endif conf_path[0] = app_path[0] = '\0';