summaryrefslogtreecommitdiff
path: root/ff2jpg.c
diff options
context:
space:
mode:
authorLaslo Hunhold <dev@frign.de>2017-04-14 17:39:25 +0200
committerLaslo Hunhold <dev@frign.de>2017-04-14 17:39:25 +0200
commit1f9d0c28423ae3e422327a8ee5422aac23391231 (patch)
treed785abb5064f8ab3fe6d44b2be16c650ba458afc /ff2jpg.c
parent42678350147b13345174f1e4c637a89c442ffd3c (diff)
Make comment in ff2jpg(1) more consistent
Diffstat (limited to 'ff2jpg.c')
-rw-r--r--ff2jpg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ff2jpg.c b/ff2jpg.c
index 213f90d..2f57a2f 100644
--- a/ff2jpg.c
+++ b/ff2jpg.c
@@ -91,7 +91,7 @@ main(int argc, char *argv[])
rowlen = width * (sizeof("RGBA") - 1);
rowout = ereallocarray(NULL, width, (sizeof("RGB") - 1) * sizeof(uint8_t));
- /* write rows */
+ /* write data */
for (i = 0; i < height; ++i) {
if (fread(row, sizeof(uint16_t), rowlen, stdin) != rowlen) {
if (ferror(stdin)) {