Skip to content

Commit af2f97e

Browse files
Fix build on Android part 3
1 parent 0691112 commit af2f97e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/modules/de.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
void ffPrintDesktopEnvironment(FFinstance* instance)
99
{
1010
#ifdef __ANDROID__
11-
ffPrintError(instance, FF_DE_MODULE_NAME, 0, &instance->config.de "DE detection is not supported on Android");
11+
ffPrintError(instance, FF_DE_MODULE_NAME, 0, &instance->config.de, "DE detection is not supported on Android");
1212
return;
1313
#endif
1414

src/modules/host.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ void ffPrintHost(FFinstance* instance)
108108
}
109109

110110
#ifdef __ANDROID__
111-
#define FF_HOST_DATA(name)
111+
#define FF_HOST_DATA(name) \
112112
FFstrbuf name; \
113113
ffStrbufInitA(&name, 0);
114114
#else

0 commit comments

Comments
 (0)