Fix build.

Change-Id: I9e1a5280d3356e8814e505915bbc74200bc58b40
This commit is contained in:
Elliott Hughes
2014-04-28 20:45:31 -07:00
parent 20cfa1b36c
commit 33ee1e779d

View File

@@ -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) {