From 9b4a1ce0ae4409f942f01be7fd91311efd076b1a Mon Sep 17 00:00:00 2001 From: superp00t Date: Sun, 30 Mar 2025 13:04:15 -0400 Subject: [PATCH] fix(bc): remove printdebug statements --- bc/string/QuickFormat.hpp | 1 - bc/system/file/posix/Stacked.cpp | 1 - 2 files changed, 2 deletions(-) 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; }