summaryrefslogtreecommitdiffstats
path: root/discover/event-parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'discover/event-parser.c')
-rw-r--r--discover/event-parser.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/discover/event-parser.c b/discover/event-parser.c
index 1eec5c9..c09c5ba 100644
--- a/discover/event-parser.c
+++ b/discover/event-parser.c
@@ -13,7 +13,7 @@
* Understands params: name, image, args.
*/
-int parse_user_event(struct device *device, struct event *event)
+struct boot_option *parse_user_event(struct device *device, struct event *event)
{
struct boot_option *opt;
const char *p;
@@ -54,9 +54,9 @@ int parse_user_event(struct device *device, struct event *event)
device_add_boot_option(device, opt);
- return 0;
+ return opt;
fail:
talloc_free(opt);
- return -1;
+ return NULL;
}
OpenPOWER on IntegriCloud