panic: Fix type warning - osmo_panic_handler_t is already a pointer ...

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
diff --git a/include/osmocore/panic.h b/include/osmocore/panic.h
index cee9535..c5a8377 100644
--- a/include/osmocore/panic.h
+++ b/include/osmocore/panic.h
@@ -6,6 +6,6 @@
 typedef void (*osmo_panic_handler_t)(const char *fmt, va_list args);
 
 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);
 
 #endif
diff --git a/src/panic.c b/src/panic.c
index a25067d..0c0a920 100644
--- a/src/panic.c
+++ b/src/panic.c
@@ -64,7 +64,7 @@
 }
  
 
-void osmo_set_panic_handler(osmo_panic_handler_t *h)
+void osmo_set_panic_handler(osmo_panic_handler_t h)
 {
 	osmo_panic_handler = h;
 }