aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2008-02-11 17:24:04 -0800
committerChris Robinson <[email protected]>2008-02-11 17:24:04 -0800
commite3e4dbbccfc352ec124f9b4e96083ed4db264ac8 (patch)
tree834f5abb41c761eea3752481950bdeb555cebabb
parent7fda645b16f8cff26aa6e2da47b6854ee4f5700d (diff)
Make the backend list static
-rw-r--r--Alc/ALc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 8f0da230..3b1d35e1 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -46,7 +46,7 @@ char _alDebug[256];
#define EmptyFuncs { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }
-struct {
+static struct {
const char *name;
void (*Init)(BackendFuncs*);
BackendFuncs Funcs;