remove debug

This commit is contained in:
Emil Williams 2024-02-26 23:47:12 +00:00
parent a5aa6c466a
commit 8d9c0f83b5

2
bake.c
View File

@ -358,7 +358,7 @@ main(int argc, char ** argv) {
fprintf(stderr, GREEN "%s" RESET ": %s\n", argv[0], s.buf + strip(s)); fprintf(stderr, GREEN "%s" RESET ": %s\n", argv[0], s.buf + strip(s));
ret = ret ? 0 : run(s.buf); ret = ret ? 0 : run(s.buf);
if (ret) if (ret)
{ fprintf(stderr, RED "result" RESET ": " BOLD "%d, %s\n" RESET, errno, strerror(errno)); } { fprintf(stderr, RED "result" RESET ": " BOLD "%d\n" RESET, ret); }
free(s.buf); free(s.buf);
return ret; return ret;