summaryrefslogtreecommitdiffstats
path: root/src/parse_10deg.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse_10deg.c')
-rw-r--r--src/parse_10deg.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/parse_10deg.c b/src/parse_10deg.c
index 0b34050..e562be0 100644
--- a/src/parse_10deg.c
+++ b/src/parse_10deg.c
@@ -61,9 +61,11 @@ int main(void)
if (write(1, xyrgb, sizeof(xyrgb)) < (ssize_t)sizeof(xyrgb))
return perror(""), 1;
}
+ if (write(1, xyrgb, sizeof(xyrgb)) < (ssize_t)sizeof(xyrgb)) /* sugar */
+ return perror(""), 1;
if (fstat(1, &attr))
return perror(""), 1;
- if ((size_t)(attr.st_size) != EXPECTED_ELEMENTS * 5 * sizeof(double))
+ if ((size_t)(attr.st_size) != (EXPECTED_ELEMENTS + 1) * 5 * sizeof(double))
return 1;
return 0;