瀏覽代碼

make private functions static in the FxT initialization code.

Cédric Augonnet 16 年之前
父節點
當前提交
3227abedd1
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/common/fxt.c

+ 2 - 2
src/common/fxt.c

@@ -21,12 +21,12 @@
 static char PROF_FILE_USER[128];
 static char PROF_FILE_USER[128];
 static int fxt_started = 0;
 static int fxt_started = 0;
 
 
-void profile_stop(void)
+static void profile_stop(void)
 {
 {
 	fut_endup(PROF_FILE_USER);
 	fut_endup(PROF_FILE_USER);
 }
 }
 
 
-void profile_set_tracefile(char *fmt, ...)
+static void profile_set_tracefile(char *fmt, ...)
 {
 {
 	va_list vl;
 	va_list vl;