commit 11ac5d2ac14ee19a984624f7f7af8d2478c6ad8a
parent 5b4777016232fe029febe5cab4eda0638ceddc01
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Mon, 24 Sep 2018 13:36:44 +0200
Enforce the 80 columns rule in some places
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/test_senc_inconsistant_cube.c b/src/test_senc_inconsistant_cube.c
@@ -154,9 +154,11 @@ test(enum senc_convention convention)
CHK(senc_enclosure_get_header(enclosure, &header) == RES_OK);
CHK(header.enclosed_media_count == 1);
CHK(senc_enclosure_get_medium(enclosure, 0, &medium) == RES_OK);
- /* If NORMAL_FRONT the external enclosure's medium should be 0, 1 if NORMAL_BACK */
+ /* If NORMAL_FRONT the external enclosure's medium should be 0,
+ * 1 if NORMAL_BACK */
expected_external_medium = conv_front ? 0 : 1;
- expected_medium = (header.is_infinite ? expected_external_medium : !expected_external_medium);
+ expected_medium = (header.is_infinite ?
+ expected_external_medium : !expected_external_medium);
CHK(medium == expected_medium);
/* Common media, for non input triangles */
front_inside = (conv_front == conv_in);