diff --git a/src/stat/cbindgen.toml b/src/stat/cbindgen.toml
index 8f75acc334edbf803893f8ac23abf848cf4125e1..d4f38953dbe8afa0f97c39791403b2ac7df5ae95 100644
--- a/src/stat/cbindgen.toml
+++ b/src/stat/cbindgen.toml
@@ -1,5 +1,5 @@
 sys_includes = ["sys/types.h"]
-include_guard = "_STAT_H"
+include_guard = "_SYS_STAT_H"
 language = "C"
 
 [enum]
diff --git a/tests/Makefile b/tests/Makefile
index 6c2a838d878c6e7498fa8909e987439c5cb6615e..2dc88010f0d2f17e3a1ae3d107282571123b84af 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -28,7 +28,7 @@ clean:
 
 run: $(BINS)
 	for bin in $(BINS); \
-	do
+	do \
 		echo "# $${bin} #"; \
 		"./$${bin}" test args; \
 	done