| 57 | } |
| 58 | |
| 59 | static void add_num(ACL_VSTRING *buf, const char *name, int value) |
| 60 | { |
| 61 | char tmp[32]; |
| 62 | |
| 63 | snprintf(tmp, sizeof(tmp), "%d", value); |
| 64 | add_str(buf, name, tmp); |
| 65 | } |
| 66 | |
| 67 | static void notify_thread(void *arg) |
| 68 | { |
no test coverage detected
searching dependent graphs…