BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / commit / 73145c0e2b43a1cca5c2cd10a53a703d3ad013bf / memory / frame.c

// Related

Nucleus

Barry Page functions + User memory functions 73145c0 (3 years, 3 months ago)
diff --git a/memory/frame.c b/memory/frame.c
index 8a868ea..c477121 100644
--- a/memory/frame.c
+++ b/memory/frame.c
@@ -100,7 +100,7 @@ find_frame(struct FrameRegion *region)
 uintptr_t
 alloc_frame(void)
 {
-	off_t idx;
+	int idx;
 	/* Walk the regions, first fit */
 	struct FrameRegion *region;
 	for (region = regions; region; region = region->next) {