]> Sergey Matveev's repositories - nnn.git/commitdiff
Fix build break
authorArun Prakash Jana <engineerarun@gmail.com>
Sun, 12 Jan 2020 18:28:48 +0000 (23:58 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Sun, 12 Jan 2020 18:28:48 +0000 (23:58 +0530)
README.md
src/nnn.c

index 99e7ceefe625c02cdc32ce6d8e01fcb172190d0c..cffcfeb519033edf88b16759adfb8abcd1387d3d 100644 (file)
--- 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
index 2f51da250759c067bb907aaa9a532b36818798e5..fed2b73f6051824cbabbd9943d9f9dddf7da6c10 100644 (file)
--- 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)