File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -445,5 +445,10 @@ static inline char* dp_time(void)
445
445
#endif /*SUN_PRO_C*/
446
446
#endif
447
447
448
+ #define report_programming_bug (format , args ...) \
449
+ LM_CRIT("\n>>> " format"\nIt seems you have hit a programming bug.\n" \
450
+ "Please help us make OpenSIPS better by reporting it at " \
451
+ "https://github.com/OpenSIPS/opensips/issues\n\n", ##args);
452
+ #define LM_BUG report_programming_bug
448
453
449
454
#endif /* ifndef dprint_h */
Original file line number Diff line number Diff line change 58
58
59
59
#define E_BAD_SERVER -500 /*!< error in server */
60
60
61
- #define report_programming_bug (format , args ...) \
62
- LM_CRIT("\n>>> " format"\nIt seems you have hit a programming bug.\n" \
63
- "Please help us make OpenSIPS better by reporting it at " \
64
- "https://github.com/OpenSIPS/opensips/issues\n\n", ##args);
65
- #define LM_BUG report_programming_bug
66
-
67
61
/*
68
62
* portable macro which prevents "unused variable" compiler warnings
69
63
* when defining certain flags, e.g. NO_LOG, NO_DEBUG
Original file line number Diff line number Diff line change 31
31
#include <sys/types.h>
32
32
#include <unistd.h>
33
33
34
- #include "statistics.h"
34
+ struct stat_var_ ;
35
35
36
36
#define MAX_PT_DESC 128
37
37
@@ -44,7 +44,7 @@ struct process_table {
44
44
int default_debug ; /* used when resetting the log level */
45
45
int debug ; /* logging level of this process */
46
46
47
- stat_var * load ;
47
+ struct stat_var_ * load ;
48
48
};
49
49
50
50
typedef void (* forked_proc_func )(int i );
You can’t perform that action at this time.
0 commit comments