mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:07:34 +00:00
LibC: Use dbgln() in setlocale()
This commit is contained in:
parent
27a7ebe548
commit
34014fa838
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue