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

Unified Diff: runtime/bin/file_macos.cc

Issue 139043003: - Address warnings about 64-bit to 32-bit conversions. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 11 months 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 | « runtime/bin/file_linux.cc ('k') | runtime/bin/file_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/file_macos.cc
===================================================================
--- runtime/bin/file_macos.cc (revision 31864)
+++ runtime/bin/file_macos.cc (working copy)
@@ -78,19 +78,19 @@
}
-off64_t File::Position() {
+int64_t File::Position() {
ASSERT(handle_->fd() >= 0);
return lseek(handle_->fd(), 0, SEEK_CUR);
}
-bool File::SetPosition(off64_t position) {
+bool File::SetPosition(int64_t position) {
ASSERT(handle_->fd() >= 0);
return lseek(handle_->fd(), position, SEEK_SET) >= 0;
}
-bool File::Truncate(off64_t length) {
+bool File::Truncate(int64_t length) {
ASSERT(handle_->fd() >= 0);
return TEMP_FAILURE_RETRY_BLOCK_SIGNALS(
ftruncate(handle_->fd(), length) != -1);
@@ -103,7 +103,7 @@
}
-off64_t File::Length() {
+int64_t File::Length() {
ASSERT(handle_->fd() >= 0);
struct stat st;
if (TEMP_FAILURE_RETRY_BLOCK_SIGNALS(fstat(handle_->fd(), &st)) == 0) {
@@ -136,7 +136,7 @@
}
FDUtils::SetCloseOnExec(fd);
if (((mode & kWrite) != 0) && ((mode & kTruncate) == 0)) {
- off64_t position = lseek(fd, 0, SEEK_END);
+ int64_t position = lseek(fd, 0, SEEK_END);
if (position < 0) {
return NULL;
}
@@ -239,7 +239,7 @@
}
-off64_t File::LengthFromPath(const char* name) {
+int64_t File::LengthFromPath(const char* name) {
struct stat st;
if (TEMP_FAILURE_RETRY_BLOCK_SIGNALS(stat(name, &st)) == 0) {
return st.st_size;
« no previous file with comments | « runtime/bin/file_linux.cc ('k') | runtime/bin/file_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698