From 1f7ef81149582ac98803426903a16533831431e7 Mon Sep 17 00:00:00 2001 From: ngiddings Date: Mon, 12 Apr 2021 01:22:31 -0500 Subject: [PATCH] Renamed module_t::string to module_t::str --- include/module.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/module.h b/include/module.h index eebad45..4e0cc1a 100644 --- a/include/module.h +++ b/include/module.h @@ -6,5 +6,5 @@ struct module_t { physaddr_t start; physaddr_t end; - char string[64 - 2 * sizeof(physaddr_t)]; + char str[64 - 2 * sizeof(physaddr_t)]; }; \ No newline at end of file