Remove a couple unnecessary (and incorrect) parameter names

This commit is contained in:
Chris Robinson
2013-10-28 22:29:59 -07:00
parent 3c65c946d4
commit 3437769ba0
+2 -2
View File
@@ -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) \