Renamed module_t::string to module_t::str

This commit is contained in:
2021-04-12 01:22:31 -05:00
parent 74fe6e1a58
commit 1f7ef81149

View File

@@ -6,5 +6,5 @@ struct module_t
{ {
physaddr_t start; physaddr_t start;
physaddr_t end; physaddr_t end;
char string[64 - 2 * sizeof(physaddr_t)]; char str[64 - 2 * sizeof(physaddr_t)];
}; };