Преглед изворни кода

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;