diff options
author | Mattias Andrée <maandree@kth.se> | 2021-03-07 22:51:21 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-03-07 22:51:21 +0100 |
commit | baa6a1cf7979c095c1081daa2a2d1134c76d2f1b (patch) | |
tree | d0525238a334091eb4d241b0b83da1a4a1793d5b /libgamma_dummy_crtc_destroy.c | |
parent | Start replacing info manual with man pages (diff) | |
download | libgamma-baa6a1cf7979c095c1081daa2a2d1134c76d2f1b.tar.gz libgamma-baa6a1cf7979c095c1081daa2a2d1134c76d2f1b.tar.bz2 libgamma-baa6a1cf7979c095c1081daa2a2d1134c76d2f1b.tar.xz |
misc
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | libgamma_dummy_crtc_destroy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgamma_dummy_crtc_destroy.c b/libgamma_dummy_crtc_destroy.c index b79fb98..935c12b 100644 --- a/libgamma_dummy_crtc_destroy.c +++ b/libgamma_dummy_crtc_destroy.c @@ -9,9 +9,9 @@ * @param this The CRTC state */ void -libgamma_dummy_crtc_destroy(libgamma_crtc_state_t *restrict this) +libgamma_dummy_crtc_destroy(struct libgamma_crtc_state *restrict this) { - libgamma_dummy_crtc_t *data = this->data; + struct libgamma_dummy_crtc *data = this->data; if (data) { free(data->gamma_red); data->gamma_red = NULL; |