aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-06-18 01:38:13 +0200
committerMattias Andrée <maandree@operamail.com>2014-06-18 01:38:13 +0200
commitd14e38fd14b743afde3279a7e130be49852d62fd (patch)
tree04794d2b77e0abbe11b977df1f5fd250c4492a47
parentnon-standard warning (diff)
downloadlibgamma-d14e38fd14b743afde3279a7e130be49852d62fd.tar.gz
libgamma-d14e38fd14b743afde3279a7e130be49852d62fd.tar.bz2
libgamma-d14e38fd14b743afde3279a7e130be49852d62fd.tar.xz
add missing _error suffix
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--src/lib/gamma-linux-drm.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/gamma-linux-drm.c b/src/lib/gamma-linux-drm.c
index ed75aea..996c76a 100644
--- a/src/lib/gamma-linux-drm.c
+++ b/src/lib/gamma-linux-drm.c
@@ -762,11 +762,11 @@ int libgamma_linux_drm_get_crtc_information(libgamma_crtc_information_t* restric
perror("connector not found");
abort();
/* Store reported error in affected fields. */
- e |= this->width_mm_error = this->height_mm_error
- = this->connector_type = this->subpixel_order_error
- = this->active_error = this->connector_name_error
- = this->edid_error = this->gamma_error
- = this->width_mm_edid_error = this->height_mm_edid_error = error;
+ e |= this->width_mm_error = this->height_mm_error
+ = this->connector_type_error = this->subpixel_order_error
+ = this->active_error = this->connector_name_error
+ = this->edid_error = this->gamma_error
+ = this->width_mm_edid_error = this->height_mm_edid_error = error;
goto cont;
}