Skip to content

Commit 66a4fc1

Browse files
committed
Fix build error on Android
host.c has an #elif, but actually #else is needed.
1 parent 159a114 commit 66a4fc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/host.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#ifndef __ANDROID__
1111
#include "common/io.h"
12-
#elif
12+
#else
1313
#include <ctype.h>
1414
#endif
1515

0 commit comments

Comments
 (0)