1
0
Fork 0
forked from len0rd/rockbox

Fix sim reds (forgot \ at end of line).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28056 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-09-09 16:29:21 +00:00
parent d9508834ff
commit 12a2889f8c

View file

@ -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 */