From 7f867a56e2fe94f46a5bb970297a92a40e61d40e Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 6 Apr 2021 12:40:55 +0200 Subject: thumbnailer: Always initialise locale on startup So that thumbnailers can print debug in UTF-8. Updated from gnome-thumbnailer-skeleton module. --- thumbnailer/gnome-thumbnailer-skeleton.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/thumbnailer/gnome-thumbnailer-skeleton.c b/thumbnailer/gnome-thumbnailer-skeleton.c index 75c0f9c10..b45192645 100644 --- a/thumbnailer/gnome-thumbnailer-skeleton.c +++ b/thumbnailer/gnome-thumbnailer-skeleton.c @@ -24,6 +24,7 @@ #include #include +#include #include #include @@ -238,6 +239,8 @@ int main (int argc, char **argv) gsize length; #endif + setlocale (LC_ALL, ""); + #if !GLIB_CHECK_VERSION(2, 36, 0) g_type_init (); #endif -- cgit v1.2.1