ref: 7ecc61bd6bf431fc45181abcc9ce6422f2a911bf
parent: d46cb056f02a90ae4f615c2d916ff7dd98913c82
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Jan 21 20:21:48 EST 2024
blk: correctly terminate line in out of space error
--- a/blk.c
+++ b/blk.c
@@ -440,7 +440,7 @@
for(i = 0; i < nblks; i++){
blks[i] = blkalloc_lk(a);
if(blks[i] == -1){
- fprint(2, "out of space to compress log");
+ fprint(2, "out of space to compress log\n");
free(blks);
poperror();
return -1;