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

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: Addresses comments. 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
« no previous file with comments | « pnacl/driver/pnacl-translate.py ('k') | toolchain_build/pnacl_targetlibs.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
off_t result = lseek(fd, offset, whence);
if (result < 0)
return errno;
« no previous file with comments | « pnacl/driver/pnacl-translate.py ('k') | toolchain_build/pnacl_targetlibs.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698