summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2021-04-06 12:40:55 +0200
committerBastien Nocera <hadess@hadess.net>2021-04-06 16:29:28 +0200
commit7f867a56e2fe94f46a5bb970297a92a40e61d40e (patch)
tree5a2b8b61765637db7a7076d5992aa135c43b8672
parent94aeed5fdb0758ad144615943f022170046070b8 (diff)
downloadgdk-pixbuf-wip/hadess/thumbnailer-locale.tar.gz
thumbnailer: Always initialise locale on startupwip/hadess/thumbnailer-locale
So that thumbnailers can print debug in UTF-8. Updated from gnome-thumbnailer-skeleton module.
-rw-r--r--thumbnailer/gnome-thumbnailer-skeleton.c3
1 files changed, 3 insertions, 0 deletions
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 <gio/gio.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
+#include <locale.h>
#include <math.h>
#include <stdlib.h>
@@ -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