From 12a2889f8c47b195824ab0e26d048d99a34accdb Mon Sep 17 00:00:00 2001 From: Thomas Martitz Date: Thu, 9 Sep 2010 16:29:21 +0000 Subject: [PATCH] Fix sim reds (forgot \ at end of line). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28056 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/plugin.h b/apps/plugin.h index 87fdc11b16..ab69d7dc76 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -926,7 +926,7 @@ extern unsigned char plugin_end_addr[]; const struct plugin_api *rb DATA_ATTR; \ const struct plugin_header __header \ __attribute__((visibility("default"))) = { \ - { PLUGIN_MAGIC, TARGET_ID, PLUGIN_API_VERSION, NULL, NULL }, + { PLUGIN_MAGIC, TARGET_ID, PLUGIN_API_VERSION, NULL, NULL }, \ plugin__start, &rb }; #endif /* CONFIG_PLATFORM */ #endif /* PLUGIN */