misc: Minor cleanup after #216

This commit is contained in:
mintsuki 2022-09-13 10:06:39 +02:00
parent 2a4cbcecc0
commit 5d5f29ffeb
1 changed files with 1 additions and 6 deletions

View File

@ -74,11 +74,6 @@ bool uri_resolve(char *uri, char **resource, char **root, char **path, char **ha
break;
}
for (size_t i = 0; ; i++) {
if (uri[i] == 0)
break;
}
return true;
}
@ -270,7 +265,7 @@ struct file_handle *uri_open(char *uri) {
panic(true, "Blake2b hash for URI `%#` does not match!", uri);
} else {
print("WARNING: Blake2b hash for URI `%#` does not match!\n"
" Press Y to continue, press any other key otherwise...", uri);
" Press Y to continue, press any other key to return to menu...", uri);
char ch = getchar();
if (ch != 'Y' && ch != 'y') {