Make comment in ff2jpg(1) more consistent - farbfeld - suckless image format wi… | |
git clone git://git.suckless.org/farbfeld | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 1f9d0c28423ae3e422327a8ee5422aac23391231 | |
parent 42678350147b13345174f1e4c637a89c442ffd3c | |
Author: Laslo Hunhold <[email protected]> | |
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(-) | |
--- | |
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… | |
- /* write rows */ | |
+ /* write data */ | |
for (i = 0; i < height; ++i) { | |
if (fread(row, sizeof(uint16_t), rowlen, stdin) != rowlen) { | |
if (ferror(stdin)) { |