Skip to content
Snippets Groups Projects
Commit 9e866b48 authored by Petteri Aimonen's avatar Petteri Aimonen
Browse files

Add missing * in migration docs

parent 71b81ad5
No related branches found
No related tags found
No related merge requests found
......@@ -151,12 +151,12 @@ Callback function signature
as *void\**. This allowed passing of any data, but made it unnecessarily
complex to return a pointer from callback.
**Changes:** The callback function parameter was changed to *void\**.
**Changes:** The callback function parameter was changed to *void\*\**.
**Required actions:** You can continue using the old callback style by
defining *PB_OLD_CALLBACK_STYLE*. Recommended action is to:
* Change the callback signatures to contain *void\** for decoders and
* Change the callback signatures to contain *void\*\** for decoders and
*void \* const \** for encoders.
* Change the callback function body to use *\*arg* instead of *arg*.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment