diff options
author | Sylvain Munaut <tnt@246tNt.com> | 2010-11-13 18:00:25 +0100 |
---|---|---|
committer | Sylvain Munaut <tnt@246tNt.com> | 2010-11-13 18:00:25 +0100 |
commit | c91d17b3d5e11e5e5c08a60abb8a1d14e49480a2 (patch) | |
tree | 6c2ce67b1a267dad11c1fa30e6bbd6119a608bc2 /src | |
parent | 2a471ee25d34529fc6449a870de244f3a271100c (diff) |
panic: Fix type warning - osmo_panic_handler_t is already a pointer ...
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/panic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panic.c b/src/panic.c index a25067de..0c0a9204 100644 --- a/src/panic.c +++ b/src/panic.c @@ -64,7 +64,7 @@ void osmo_panic(const char *fmt, ...) } -void osmo_set_panic_handler(osmo_panic_handler_t *h) +void osmo_set_panic_handler(osmo_panic_handler_t h) { osmo_panic_handler = h; } |