diff options
author | Shav Kinderlehrer <[email protected]> | 2023-04-17 10:44:30 -0400 |
---|---|---|
committer | Shav Kinderlehrer <[email protected]> | 2023-04-17 10:44:30 -0400 |
commit | 15986b04ff7c9a3932f9c752a727ca8af8b80d88 (patch) | |
tree | 8457794954d59ceb28b1d847ee680c3af5fc1992 /src/lib | |
parent | c3e8f013d2a329bdb1984d895dc94b3793e9374a (diff) | |
download | lat-15986b04ff7c9a3932f9c752a727ca8af8b80d88.tar.gz lat-15986b04ff7c9a3932f9c752a727ca8af8b80d88.zip |
Fix binary printing bugv0.7.2
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/file.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/file.c b/src/lib/file.c index f8453d2..93591ab 100644 --- a/src/lib/file.c +++ b/src/lib/file.c @@ -28,8 +28,6 @@ struct filedata readfile(FILE *fp) { die("fread"); } - f.lc = 10000; - // guess if printable // from https://github.com/sharkdp/content_inspector/blob/master/src/lib.rs int testlen = f.buflen >= 64 ? 64 : f.buflen; |