diff options
Diffstat (limited to 'Libraries')
-rw-r--r-- | Libraries/LibC/locale.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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 <AK/LogStream.h> #include <assert.h> #include <locale.h> #include <stdio.h> @@ -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; } |