shithub: neoventi

Download patch

ref: 95e67b2dead052185152c8b750c68b777151bbb5
parent: b3f5bf725a5e93719b34c552a15ae9103548a4c2
author: Noam Preil <noam@pixelhero.dev>
date: Tue Aug 13 12:01:18 EDT 2024

fix two warnings; thanks wilhelm ☺

--- a/cache.c
+++ b/cache.c
@@ -34,7 +34,7 @@
 	assert(sizeof(bucket_t) == 64);
 	data = sbrk((usize)0x2000 * NENTRIES);
 	if(data == (void*)-1)
-		sysfatal("failed to allocate cache space of %lux", 8192*NENTRIES);
+		sysfatal("failed to allocate cache space of %llux", 8192*NENTRIES);
 	buckets = sbrk(64 + 64*NBUCKETS);
 	freelist = sbrk(4 * NENTRIES);
 	displacement = ((usize)buckets & 0b111111);
--- a/server.c
+++ b/server.c
@@ -128,7 +128,7 @@
 {
 	long n;
 	char buf[0x10000];
-	u16int offset, sz;
+	u16int offset = 0, sz = 0;
 	while(1){
 		//TODO: treat conn.buf as ring buffer? Avoids moving packet around.
 		// Maintain 64K of packet data in conn.buf.