Skip to content
Snippets Groups Projects
Commit 5a19e01b authored by Jakob Olsson's avatar Jakob Olsson
Browse files

libmobile: incorrect function return type

parent 0e8fc07e
Branches fm-dev-steer
No related tags found
No related merge requests found
......@@ -297,7 +297,7 @@ struct json_object *mobile_get_system_info(struct dongle *dev)
return NULL;
}
void *set_lib_debug(int debug_level)
void set_lib_debug(int debug_level)
{
if (debug_level > 1 || debug_level < 0) {
lib_debug_print("Only debug levels 0 and 1 are available for the library debugging\n");
......
......@@ -48,5 +48,5 @@ struct json_object *mobile_get_sim_state(struct dongle *dev);
struct json_object *mobile_activate_sim(struct dongle *dev, char *pin);
struct json_object *mobile_get_remaining_tries_puk(struct dongle *dev);
struct json_object *mobile_get_traffic_statistics(struct dongle *dev);
void *set_lib_debug(int debug_level)
void set_lib_debug(int debug_level)
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment