Make comment in ff2jpg(1) more consistent - farbfeld - suckless image format with conversion tools
(HTM) git clone git://git.suckless.org/farbfeld
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 1f9d0c28423ae3e422327a8ee5422aac23391231
(DIR) parent 42678350147b13345174f1e4c637a89c442ffd3c
(HTM) Author: Laslo Hunhold <dev@frign.de>
Date: Fri, 14 Apr 2017 17:39:25 +0200
Make comment in ff2jpg(1) more consistent
Diffstat:
M ff2jpg.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git 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)) {