jcs
/subtext
/amendments
/104
bile: Fix function name in panic
I wish THINK C supported __func__
    jcs made amendment 104 over 3 years ago
--- bile.c	Wed May 18 10:23:37 2022
+++ bile.c	Wed May 18 14:47:34 2022
@@ -667,7 +667,7 @@ bile_unmarshall_object(struct bile *bile,
 			fsize = fields[n].size;
 		
 		if (off + fsize > size)
-			panic("bile_unpack_object: overflow at field %lu!", n);
+			panic("bile_unmarshall_object: overflow at field %lu!", n);
 		
 		ptr = (char *)object + fields[n].struct_off;