aboutsummaryrefslogtreecommitdiffstats
path: root/libgamma_method_capabilities.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgamma_method_capabilities.c')
-rw-r--r--libgamma_method_capabilities.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libgamma_method_capabilities.c b/libgamma_method_capabilities.c
index 6c44056..226591c 100644
--- a/libgamma_method_capabilities.c
+++ b/libgamma_method_capabilities.c
@@ -13,10 +13,10 @@
* error identifier provided by this library
*/
int
-libgamma_method_capabilities(libgamma_method_capabilities_t *restrict this, size_t size, int method)
+libgamma_method_capabilities(struct libgamma_method_capabilities *restrict this, size_t size, int method)
{
- libgamma_method_capabilities_t caps_;
- void (*func)(libgamma_method_capabilities_t *restrict);
+ struct libgamma_method_capabilities caps_;
+ void (*func)(struct libgamma_method_capabilities *restrict);
memset(this, 0, sizeof(*this));
@@ -45,4 +45,5 @@ libgamma_method_capabilities(libgamma_method_capabilities_t *restrict this, size
}
}
this->crtc_information__old = (int32_t)this->crtc_information;
+ return 0;
}