From 4f99c0116a54fa6d962c2e1026c7a69f0665a63c Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Tue, 1 Aug 2023 20:52:28 +0200 Subject: color_size_on: fix typo, the cut-off is meant to be 2G --- lr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lr.c b/lr.c index 5a2d829..89f3573 100644 --- a/lr.c +++ b/lr.c @@ -1634,7 +1634,7 @@ color_size_on(off_t s) else if (s < 512*1024LL) c = 226; else if (s < 1024*1024LL) c = 220; else if (s < 700*1024*1024LL) c = 214; - else if (s < 2*1048*1024*1024LL) c = 208; + else if (s < 2*1024*1024*1024LL) c = 208; else if (s < 50*1024*1024*1024LL) c = 202; else c = 196; -- cgit 1.4.1