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_get_crtc_information.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 'libgamma_get_crtc_information.c')
-rw-r--r-- | libgamma_get_crtc_information.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libgamma_get_crtc_information.c b/libgamma_get_crtc_information.c index 58011dd..a409b76 100644 --- a/libgamma_get_crtc_information.c +++ b/libgamma_get_crtc_information.c @@ -13,11 +13,11 @@ * @return Zero on success, -1 on error; on error refer to the error reports in `this` */ int -libgamma_get_crtc_information(libgamma_crtc_information_t *restrict this, size_t size, - libgamma_crtc_state_t *restrict crtc, unsigned long long fields) +libgamma_get_crtc_information(struct libgamma_crtc_information *restrict this, size_t size, + struct libgamma_crtc_state *restrict crtc, unsigned long long fields) { - libgamma_crtc_information_t info_; - int r, (*func)(libgamma_crtc_information_t *restrict, libgamma_crtc_state_t *restrict, unsigned long long); + struct libgamma_crtc_information info_; + int r, (*func)(struct libgamma_crtc_information *restrict, struct libgamma_crtc_state *restrict, unsigned long long); this->edid = NULL; this->connector_name = NULL; |