X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;ds=sidebyside;f=ccan%2Ftypesafe_cb%2Ftest%2Fcompile_ok-typesafe_cb-const.c;fp=ccan%2Ftypesafe_cb%2Ftest%2Fcompile_ok-typesafe_cb-const.c;h=7c2d62ef231b599909c4dda29d61b14488ed97a6;hb=148c09482cd343f1c02526908a2612d327412697;hp=1e4a77b25399c44bcfc4e92abba5992611bcb1ee;hpb=3d27344a5dc4b56197533876a8f5f4a78406c829;p=ccan diff --git a/ccan/typesafe_cb/test/compile_ok-typesafe_cb-const.c b/ccan/typesafe_cb/test/compile_ok-typesafe_cb-const.c index 1e4a77b2..7c2d62ef 100644 --- a/ccan/typesafe_cb/test/compile_ok-typesafe_cb-const.c +++ b/ccan/typesafe_cb/test/compile_ok-typesafe_cb-const.c @@ -41,9 +41,10 @@ static void my_callback_post(/*const*/ char *p, int x) int main(int argc, char *argv[]) { - register_callback(my_callback, "hello world"); - register_callback_def(my_callback, "hello world"); - register_callback_pre(my_callback_pre, "hello world"); - register_callback_post(my_callback_post, "hello world"); + char p[] = "hello world"; + register_callback(my_callback, p); + register_callback_def(my_callback, p); + register_callback_pre(my_callback_pre, p); + register_callback_post(my_callback_post, p); return 0; }