Quellcode durchsuchen

fix non-static dummy function that slipped in with locale implementation

Rich Felker vor 10 Jahren
Ursprung
Commit
86876dbec5
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      src/locale/__lctrans.c

+ 1 - 1
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;
 }