diff options
author | David Schleef <ds@schleef.org> | 2003-08-19 08:11:58 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-08-19 08:11:58 +0000 |
commit | 13916dae8f31a8b91e07366f8cc8788ae43a380c (patch) | |
tree | 06b1978a6d8746fc5514f626291c9670e49d6425 /tools/gst-typefind.c | |
parent | 83bdee27e5f6f939eabe03f705d7b766a407f9dc (diff) |
further i18n: call setlocale()
Original commit message from CVS:
further i18n: call setlocale()
Diffstat (limited to 'tools/gst-typefind.c')
-rw-r--r-- | tools/gst-typefind.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/gst-typefind.c b/tools/gst-typefind.c index 75ad0a528..9f34c2840 100644 --- a/tools/gst-typefind.c +++ b/tools/gst-typefind.c @@ -4,6 +4,7 @@ #include <string.h> #include <stdlib.h> +#include <locale.h> #include <gst/gst.h> /* @@ -38,6 +39,8 @@ main (int argc, char *argv[]) GstElement *pipeline; GstElement *source, *typefind; + setlocale (LC_ALL, ""); + gst_init (&argc, &argv); if (argc < 2) { |