diff --git a/bc/string/QuickFormat.hpp b/bc/string/QuickFormat.hpp index 29bbe20..ddf7324 100644 --- a/bc/string/QuickFormat.hpp +++ b/bc/string/QuickFormat.hpp @@ -18,7 +18,6 @@ class QuickFormat { va_list args; va_start(args, format); VFormat(this->buffer, N, format, args); - printf("QI %d '%s', '%s'\n", N, format, this->buffer); } const char* ToString() { diff --git a/bc/system/file/posix/Stacked.cpp b/bc/system/file/posix/Stacked.cpp index 3a7c72d..5d39176 100644 --- a/bc/system/file/posix/Stacked.cpp +++ b/bc/system/file/posix/Stacked.cpp @@ -613,7 +613,6 @@ bool Open(FileParms* parms) { auto filefd = flags & O_CREAT ? ::open(name.ToString(), flags, 0777) : ::open(name.ToString(), flags); if (filefd == -1) { - printf("opened? '%s'\n", name.ToString()); BC_FILE_SET_ERROR_MSG(8, "Posix Open - %s", name.ToString()); return false; }