diff --git a/Libraries/LibC/locale.cpp b/Libraries/LibC/locale.cpp index c8f3e4f85d..5bfcfc0e24 100644 --- a/Libraries/LibC/locale.cpp +++ b/Libraries/LibC/locale.cpp @@ -24,6 +24,7 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include #include #include #include @@ -66,7 +67,7 @@ static struct lconv default_locale = { char* setlocale(int category, const char* locale) { - dbgprintf("FIXME(LibC): setlocale(%d, %s)\n", category, locale); + dbgln("FIXME(LibC): setlocale({}, '{}')", category, locale); return nullptr; }