Index: trunk/tests/conf/conftest.c =================================================================== --- trunk/tests/conf/conftest.c (revision 36882) +++ trunk/tests/conf/conftest.c (revision 36883) @@ -28,23 +28,23 @@ } -void watch_pre(rnd_conf_native_t *cfg, int idx) +void watch_pre(rnd_conf_native_t *cfg, int idx, void *udata) { printf("watch_pre: '%s' old value\n", cfg->hash_path); } -void watch_post(rnd_conf_native_t *cfg, int idx) +void watch_post(rnd_conf_native_t *cfg, int idx, void *udata) { printf("watch_post: '%s' new value\n", cfg->hash_path); } -void notify_pre(rnd_conf_native_t *cfg, int idx) +void notify_pre(rnd_conf_native_t *cfg, int idx, void *udata) { if (global_notify) printf("notify_pre: '%s' old value\n", cfg->hash_path); } -void notify_post(rnd_conf_native_t *cfg, int idx) +void notify_post(rnd_conf_native_t *cfg, int idx, void *udata) { if (global_notify) printf("notify_post: '%s' new value\n", cfg->hash_path);