Remove/fix unused stuff and other warnings
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
#include <ulib.h>
|
||||
|
||||
int showtree(char *root, int indent) {
|
||||
#define INDENT() for (size_t i = 0; i < indent; i++) uprintf(" ")
|
||||
#define INDENT() for (size_t i = 0; i < (size_t)indent; i++) uprintf(" ")
|
||||
|
||||
FsStat statbuf; ZERO(&statbuf);
|
||||
if (fs_stat(root, &statbuf) != E_OK) {
|
||||
|
||||
Reference in New Issue
Block a user