shithub: gefs

Download patch

ref: 64a67122575094f38e0197cf9a52ff7bc7f1995e
parent: b648fe31b87c0491b2be51412006aea3a0348203
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Feb 27 00:34:26 EST 2022

dump: fix where we put spaces

--- a/dump.c
+++ b/dump.c
@@ -287,7 +287,7 @@
 	Show:
 		for(i = 0; i < 32; i++){
 			fprint(fd, "%x", b->buf[i] & 0xff);
-			if(i % 4 == 0)
+			if(i % 4 == 3)
 				fprint(fd, " ");
 		}
 		fprint(fd, "\n");