diff --git a/Makefile.common b/Makefile.common
index 7c96f65352..7cc0c1a81b 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -799,7 +799,6 @@ endif
ifeq ($(HAVE_MENU_COMMON), 1)
OBJ += menu/menu_driver.o \
- menu/menu_content.o \
menu/menu_setting.o \
menu/widgets/menu_filebrowser.o \
menu/widgets/menu_dialog.o \
diff --git a/griffin/griffin.c b/griffin/griffin.c
index 314e6b72d8..fd8edca884 100644
--- a/griffin/griffin.c
+++ b/griffin/griffin.c
@@ -1239,7 +1239,6 @@ MENU
#include "../menu/menu_driver.c"
#include "../menu/menu_setting.c"
#include "../menu/menu_cbs.c"
-#include "../menu/menu_content.c"
#if defined(HAVE_NETWORKING)
#include "../menu/menu_networking.c"
diff --git a/menu/menu_content.c b/menu/menu_content.c
deleted file mode 100644
index 260e3df21e..0000000000
--- a/menu/menu_content.c
+++ /dev/null
@@ -1,37 +0,0 @@
-/* RetroArch - A frontend for libretro.
- * Copyright (C) 2011-2017 - Daniel De Matteis
- *
- * RetroArch is free software: you can redistribute it and/or modify it under the terms
- * of the GNU General Public License as published by the Free Software Found-
- * ation, either version 3 of the License, or (at your option) any later version.
- *
- * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
- * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with RetroArch.
- * If not, see .
- */
-
-#include
-#include
-#include
-#include
-#include
-
-#ifdef HAVE_CONFIG_H
-#include "../config.h"
-#endif
-
-#include "menu_content.h"
-#include "menu_driver.h"
-#include "menu_shader.h"
-
-#include "../core_info.h"
-#include "../configuration.h"
-#include "../defaults.h"
-#include "../playlist.h"
-#include "../verbosity.h"
-
-/* This file should probably be removed, but may need
- * to add something to it in the future... */
diff --git a/menu/menu_networking.c b/menu/menu_networking.c
index 0819f20610..4d33639b60 100644
--- a/menu/menu_networking.c
+++ b/menu/menu_networking.c
@@ -80,7 +80,7 @@ unsigned print_buf_lines(file_list_t *list, char *buf,
if (line_start[ln] == '\n')
line_start[ln] = '\0';
- str_list = string_split(line_start, " ");
+ str_list = string_split(line_start, " ");
if (str_list->elems[0].data)
core_date = str_list->elems[0].data;