Commit a37ba771 authored by Caleb C. Sander's avatar Caleb C. Sander
Browse files

Use size_t where relevant

parent d5516792
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
......@@ -4,7 +4,7 @@
#include "util.h"
const uint64_t REPEATS = 100000;
const size_t REPEATS = 100000;
int main() {
uint64_t min_miss = UINT64_MAX;
......
......@@ -6,8 +6,8 @@
#include "stage2.h"
const uint64_t MIN_CHOICE = 1;
const uint64_t MAX_CHOICE = 256;
const size_t MIN_CHOICE = 1;
const size_t MAX_CHOICE = 256;
static inline page_t *init_pages(void) {
return calloc(MAX_CHOICE, sizeof(page_t));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment