Fix Windows build.

Windows doesn't like returning void values from void functions.

Change-Id: I9fbcb26098a5434ff4e8980f3ed0cd7b2567d658
This commit is contained in:
Adam Langley 2016-03-09 12:09:00 -08:00
parent f202d96875
commit f284a7dab6

View File

@ -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 *arg) {
return OBJ_NAME_do_all_sorted(type, callback, arg);
OBJ_NAME_do_all_sorted(type, callback, arg);
}