Fix build break

This commit is contained in:
Arun Prakash Jana 2020-01-12 23:58:48 +05:30
parent 917123c400
commit ab521c02a4
No known key found for this signature in database
GPG Key ID: A75979F35C080412
2 changed files with 1 additions and 2 deletions

View File

@ -29,7 +29,7 @@ It runs smoothly on the Raspberry Pi, Termux [on Android](https://www.youtube.co
- Typically needs < 3.5MB resident memory - Typically needs < 3.5MB resident memory
- Works with 8-bit colors - Works with 8-bit colors
- Disk-IO sensitive (few disk reads and writes) - 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 - Minimizes screen refresh with fast line redraws
- Portable - Portable
- Minimal library deps, easily compilable, tiny binary - Minimal library deps, easily compilable, tiny binary

View File

@ -4326,7 +4326,6 @@ static void draw_line(char *path, int ncols)
} }
statusbar(path); statusbar(path);
return;
} }
static void redraw(char *path) static void redraw(char *path)