浏览代码

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

Rich Felker 10 年之前
父节点
当前提交
86876dbec5
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;
 }