Skip to content

Commit 5e69c0b

Browse files
committed
Make C function static
1 parent fa0bb8a commit 5e69c0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FirebaseDynamicLinks/Sources/FIRDLJavaScriptExecutor.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ - (void)webView:(WKWebView *)webView
155155
// and -1 when an error occurs.
156156
// From:
157157
// https://developer.apple.com/documentation/apple-silicon/about-the-rosetta-translation-environment
158-
int processIsTranslated() {
158+
static int processIsTranslated() {
159159
int ret = 0;
160160
size_t size = sizeof(ret);
161161
if (sysctlbyname("sysctl.proc_translated", &ret, &size, NULL, 0) == -1) {

0 commit comments

Comments
 (0)