Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33ee1e77 authored by Elliott Hughes's avatar Elliott Hughes
Browse files

Fix build.

Change-Id: I9e1a5280d3356e8814e505915bbc74200bc58b40
parent 20cfa1b3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -16,8 +16,8 @@

package com.android.internal.os;

import static libcore.io.OsConstants.S_IRWXG;
import static libcore.io.OsConstants.S_IRWXO;
import static android.system.OsConstants.S_IRWXG;
import static android.system.OsConstants.S_IRWXO;

import android.content.res.Resources;
import android.content.res.TypedArray;
@@ -195,7 +195,7 @@ public class ZygoteInit {
                FileDescriptor fd = sServerSocket.getFileDescriptor();
                sServerSocket.close();
                if (fd != null) {
                    Libcore.os.close(fd);
                    Os.close(fd);
                }
            }
        } catch (IOException ex) {