You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I found there is an error line in the example code, that "void *" should be "void **",
rebind_symbols((struct rebinding[2]){{"close", my_close, (void *)&orig_close}, {"open", my_open, (void *)&orig_open}}, 2);
Hi,
I found there is an error line in the example code, that "void *" should be "void **",
rebind_symbols((struct rebinding[2]){{"close", my_close, (void *)&orig_close}, {"open", my_open, (void *)&orig_open}}, 2);
-->
rebind_symbols((struct rebinding[2]){{"close", my_close, (void **)&orig_close}, {"open", my_open, (void **)&orig_open}}, 2);
hope it would be useful for new comer.
The text was updated successfully, but these errors were encountered: