summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2014-09-06 08:40:20 -0400
committerRich Felker <dalias@aerifal.cx>2014-09-06 08:40:20 -0400
commit86876dbec55d9416859bbbbc9850b1ec81b6dbea (patch)
treedd58925579a8857041595cfe26a6343e0aa9be66
parent7ff804269bb0594431308ad328239aeeb5ceb057 (diff)
downloadmusl-86876dbec55d9416859bbbbc9850b1ec81b6dbea.tar.gz
fix non-static dummy function that slipped in with locale implementation
-rw-r--r--src/locale/__lctrans.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/locale/__lctrans.c b/src/locale/__lctrans.c
index 2769c084..15994c57 100644
--- a/src/locale/__lctrans.c
+++ b/src/locale/__lctrans.c
@@ -2,7 +2,7 @@
#include "locale_impl.h"
#include "libc.h"
-const char *dummy(const char *msg, const struct __locale_map *lm)
+static const char *dummy(const char *msg, const struct __locale_map *lm)
{
return msg;
}