Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(690)

Unified Diff: src/nonsfi/irt/irt_interfaces.c

Issue 1541863002: PNaCl. Enables x32 libraries for non-sfi runtime. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Adds a comment explaining why clang is used for building unsandboxed_irt_x86_64 Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/nonsfi/irt/irt_interfaces.c
diff --git a/src/nonsfi/irt/irt_interfaces.c b/src/nonsfi/irt/irt_interfaces.c
index 1f363610826239d0628d6782b280a5be48b8fd03..7a0cada5fe61d33e046969306ac81a0efb732c95 100644
--- a/src/nonsfi/irt/irt_interfaces.c
+++ b/src/nonsfi/irt/irt_interfaces.c
@@ -244,8 +244,8 @@ static int irt_write(int fd, const void *buf, size_t count, size_t *nwrote) {
return 0;
}
-static int irt_seek(int fd, nacl_abi_off_t offset, int whence,
- nacl_abi_off_t *new_offset) {
+static int irt_seek(int fd, nacl_irt_off_t offset, int whence,
+ nacl_irt_off_t *new_offset) {
Petr Hosek 2015/12/22 17:26:41 This could be potentially landed in a separate CL.
John 2015/12/22 18:12:00 This is only a problem when building the unsandbox
off_t result = lseek(fd, offset, whence);
if (result < 0)
return errno;

Powered by Google App Engine
This is Rietveld 408576698