From c0c2a463f648e73eb3b32bb3d3acd6d66cf0e98d Mon Sep 17 00:00:00 2001 From: Michael Wiedenbauer Date: Thu, 20 Nov 2008 14:18:42 +0000 Subject: [PATCH] prepended __ to the io_x exports --- source/disc.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/disc.c b/source/disc.c index 9090e94..15fa5b8 100755 --- a/source/disc.c +++ b/source/disc.c @@ -45,16 +45,16 @@ The list is terminated by a NULL/NULL entry. #include static const DISC_INTERFACE* get_io_gcsda (void) { - return &io_gcsda; + return &__io_gcsda; } static const DISC_INTERFACE* get_io_gcsdb (void) { - return &io_gcsdb; + return &__io_gcsdb; } static const DISC_INTERFACE* get_io_wiisd (void) { - return &io_wiisd; + return &__io_wiisd; } static const DISC_INTERFACE* get_io_usbstorage (void) { - return &io_usbstorage; + return &__io_usbstorage; } const INTERFACE_ID _FAT_disc_interfaces[] = { {"sd", get_io_wiisd}, @@ -70,10 +70,10 @@ const INTERFACE_ID _FAT_disc_interfaces[] = { #include static const DISC_INTERFACE* get_io_gcsda (void) { - return &io_gcsda; + return &__io_gcsda; } static const DISC_INTERFACE* get_io_gcsdb (void) { - return &io_gcsdb; + return &__io_gcsdb; } const INTERFACE_ID _FAT_disc_interfaces[] = {