From ab521c02a4550b5d676f4e0c26a880a92f8a6b47 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sun, 12 Jan 2020 23:58:48 +0530 Subject: [PATCH] Fix build break --- README.md | 2 +- src/nnn.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 99e7ceef..cffcfeb5 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ It runs smoothly on the Raspberry Pi, Termux [on Android](https://www.youtube.co - Typically needs < 3.5MB resident memory - Works with 8-bit colors - Disk-IO sensitive (few disk reads and writes) - - No FPU usage (all integer calculations, even for file size) + - No FPU usage (all integer maths, even for file size) - Minimizes screen refresh with fast line redraws - Portable - Minimal library deps, easily compilable, tiny binary diff --git a/src/nnn.c b/src/nnn.c index 2f51da25..fed2b73f 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -4326,7 +4326,6 @@ static void draw_line(char *path, int ncols) } statusbar(path); - return; } static void redraw(char *path)