all printf calls replaced with kprintf

This commit is contained in:
2022-10-24 18:33:43 +06:00
parent c70544ff97
commit 4785023126
27 changed files with 189 additions and 159 deletions

View File

@@ -24,7 +24,7 @@ void ____Autoarr_free_KVPair_(void* ar){
}
void printkvp(KVPair p){
printf("{\"%s\", ",p.key);
kprintf("{\"%s\", ",p.key);
printuni(p.value);
printf("}");
kprintf("}");
}