Skip to content

Commit

Permalink
Changed a static function to match the naming scheme of rest of sourc…
Browse files Browse the repository at this point in the history
…e file.
  • Loading branch information
icculus committed Jun 1, 2015
1 parent cad269b commit 36ecb76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/linux/SDL_dbus.c
Expand Up @@ -30,7 +30,7 @@ static unsigned int screensaver_cookie = 0;
static SDL_DBusContext dbus = {0};

static int
load_dbus_syms(void)
LoadDBUSSyms(void)
{
#define SDL_DBUS_SYM2(x, y) \
if (!(dbus.x = SDL_LoadFunction(dbus_handle, #y))) return -1
Expand Down Expand Up @@ -95,7 +95,7 @@ LoadDBUSLibrary(void)
retval = -1;
/* Don't call SDL_SetError(): SDL_LoadObject already did. */
} else {
retval = load_dbus_syms();
retval = LoadDBUSSyms();
if (retval < 0) {
UnloadDBUSLibrary();
}
Expand Down

0 comments on commit 36ecb76

Please sign in to comment.