Attention is currently required from: arehbein.
1 comment:
File src/stream.c:
Patch Set #6, Line 615: cli->state);
there's also the __func__ or __FUNCTION__ macro that could be used here. This makes the compiler insert the function name. So something like
osmo_panic("%s called with unexpected state %d\n", __func__, cli->state);
This way it will work even if the code is refactored, functions are renamed etc. in the future.
To view, visit change 33206. To unsubscribe, or for help writing mail filters, visit settings.