this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix warning -Wdangling-else in err.c

authored by

X0rg and committed by
Lubos Dolezel
326855f2 8ef09833

+4
+4
src/libSystem/libc/err.c
··· 219 219 } 220 220 fprintf(_e_err_file, "%s\n", strerror(code)); 221 221 if (_e_err_exit.type) 222 + { 222 223 #ifdef __BLOCKS__ 223 224 if (_e_err_exit.type == ERR_EXIT_BLOCK) 224 225 _e_err_exit.block(eval); 225 226 else 226 227 #endif /* __BLOCKS__ */ 227 228 _e_err_exit.func(eval); 229 + } 228 230 exit(eval); 229 231 } 230 232 ··· 247 249 _e_visprintf(_e_err_file, fmt, ap); 248 250 fprintf(_e_err_file, "\n"); 249 251 if (_e_err_exit.type) 252 + { 250 253 #ifdef __BLOCKS__ 251 254 if (_e_err_exit.type == ERR_EXIT_BLOCK) 252 255 _e_err_exit.block(eval); 253 256 else 254 257 #endif /* __BLOCKS__ */ 255 258 _e_err_exit.func(eval); 259 + } 256 260 exit(eval); 257 261 } 258 262