Fix Windows build.
Windows doesn't like returning void values from void functions. Change-Id: I9fbcb26098a5434ff4e8980f3ed0cd7b2567d658
This commit is contained in:
parent
f202d96875
commit
f284a7dab6
@ -67,5 +67,5 @@ void OBJ_NAME_do_all_sorted(int type,
|
|||||||
|
|
||||||
void OBJ_NAME_do_all(int type, void (*callback)(const OBJ_NAME *, void *arg),
|
void OBJ_NAME_do_all(int type, void (*callback)(const OBJ_NAME *, void *arg),
|
||||||
void *arg) {
|
void *arg) {
|
||||||
return OBJ_NAME_do_all_sorted(type, callback, arg);
|
OBJ_NAME_do_all_sorted(type, callback, arg);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user