Skip to content

Commit a792053

Browse files
author
Super User
committed
fix in nvram defination
1 parent 3a40277 commit a792053

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/nvram.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -903,9 +903,9 @@ dump_rtas_event_entry(char *data, int len)
903903
{
904904
void *rtas_event;
905905
void *handle;
906-
void *(*parse_rtas_event)();
907-
void (*rtas_print_event)();
908-
void (*cleanup_rtas_event)();
906+
void *(*parse_rtas_event)(char*, int);
907+
void (*rtas_print_event)(FILE *, struct rtas_event *, int);
908+
void (*cleanup_rtas_event)(struct rtas_event *);
909909

910910
handle = dlopen("/usr/lib/librtasevent.so", RTLD_LAZY);
911911
if (handle == NULL)

0 commit comments

Comments
 (0)