소스 검색

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 int fxt_started = 0;
 
-void profile_stop(void)
+static void profile_stop(void)
 {
 	fut_endup(PROF_FILE_USER);
 }
 
-void profile_set_tracefile(char *fmt, ...)
+static void profile_set_tracefile(char *fmt, ...)
 {
 	va_list vl;