File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -73,8 +73,7 @@ void parse_context(int argc, char **argv) {
73
73
}
74
74
}
75
75
76
- void load_config ()
77
- {
76
+ void load_config () {
78
77
int comment ;
79
78
char buf [256 ];
80
79
char * pbuf ;
@@ -96,11 +95,11 @@ void load_config()
96
95
if (!comment && pbuf == buf ) continue ; // empty line
97
96
else break ;
98
97
}
99
- if (!comment ) {
98
+ if (!comment ) {
100
99
* pbuf ++ = (char )toupper (c );
101
100
}
102
101
} // parse line
103
- if (comment ) {
102
+ if (comment ) {
104
103
continue ;
105
104
}
106
105
* pbuf = '\0' ;
@@ -111,10 +110,9 @@ void load_config()
111
110
ent -> found = 0 ;
112
111
ent -> next = NULL ;
113
112
114
- if (prev == NULL ) {
113
+ if (prev == NULL ) {
115
114
context .symbols = ent ;
116
- }
117
- else {
115
+ } else {
118
116
prev -> next = ent ;
119
117
}
120
118
prev = ent ;
You can’t perform that action at this time.
0 commit comments