aboutsummaryrefslogtreecommitdiff
path: root/src
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 /src
parentfix macros for LFS *64_t types in sys/stat.h, sys/types.h, glob.h (diff)
downloadgrovel-86876dbec55d9416859bbbbc9850b1ec81b6dbea.tar.gz
grovel-86876dbec55d9416859bbbbc9850b1ec81b6dbea.tar.xz
fix non-static dummy function that slipped in with locale implementation
Diffstat (limited to 'src')
-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;
}