From 3437769ba0e00fcc6f831f62e096b0be5fe565ab Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 28 Oct 2013 22:29:59 -0700 Subject: Remove a couple unnecessary (and incorrect) parameter names --- Alc/backends/base.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Alc/backends') diff --git a/Alc/backends/base.h b/Alc/backends/base.h index d05ec0f5..90c4d30f 100644 --- a/Alc/backends/base.h +++ b/Alc/backends/base.h @@ -22,7 +22,7 @@ void ALCbackend_lock(ALCbackend *self); void ALCbackend_unlock(ALCbackend *self); struct ALCbackendVtable { - void (*const Destruct)(ALCbackend *state); + void (*const Destruct)(ALCbackend*); ALCenum (*const open)(ALCbackend*, const ALCchar*); void (*const close)(ALCbackend*); @@ -39,7 +39,7 @@ struct ALCbackendVtable { void (*lock)(ALCbackend*); void (*unlock)(ALCbackend*); - void (*const Delete)(ALCbackend *state); + void (*const Delete)(ALCbackend*); }; #define DEFINE_ALCBACKEND_VTABLE(T) \ -- cgit v1.2.3