File tree 5 files changed +7
-5
lines changed
5 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,6 @@ char *hypervisor_ip_address = NULL;
82
82
83
83
/* Log file */
84
84
char * log_file_name = NULL ;
85
- FILE * log_file = NULL ;
86
85
87
86
/* VM flags */
88
87
volatile int vm_save_state = 0 ;
Original file line number Diff line number Diff line change @@ -47,9 +47,6 @@ struct symbol {
47
47
/* ROM identification tag */
48
48
#define ROM_ID 0x1e94b3df
49
49
50
- /* Global log file */
51
- extern FILE * log_file ;
52
-
53
50
/* Operating system name */
54
51
extern const char * os_name ;
55
52
Original file line number Diff line number Diff line change 32
32
33
33
#include "utils.h"
34
34
35
- extern FILE * log_file ;
35
+ FILE * log_file = NULL ;
36
36
37
37
/* Add an element to a list */
38
38
m_list_t * m_list_add (m_list_t * * head ,void * data )
Original file line number Diff line number Diff line change 12
12
#include <netinet/in.h>
13
13
#include <signal.h>
14
14
15
+ /* Global log file */
16
+ extern FILE * log_file ;
17
+
15
18
/* Host CPU Types */
16
19
#define CPU_x86 0
17
20
#define CPU_amd64 1
Original file line number Diff line number Diff line change 12
12
#include <netinet/in.h>
13
13
#include <signal.h>
14
14
15
+ /* Global log file */
16
+ extern FILE * log_file ;
17
+
15
18
/* Host CPU Types */
16
19
#define CPU_x86 0
17
20
#define CPU_amd64 1
You can’t perform that action at this time.
0 commit comments