diff options
author | Chris Robinson <[email protected]> | 2013-10-28 22:29:59 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-28 22:29:59 -0700 |
commit | 3437769ba0e00fcc6f831f62e096b0be5fe565ab (patch) | |
tree | 34a7cb43ea8e54f590a0d95e310f3b7a69dc6d6c /Alc/backends/base.h | |
parent | 3c65c946d4781cd6773c748b1e13f4c61db535e6 (diff) |
Remove a couple unnecessary (and incorrect) parameter names
Diffstat (limited to 'Alc/backends/base.h')
-rw-r--r-- | Alc/backends/base.h | 4 |
1 files changed, 2 insertions, 2 deletions
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) \ |