You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by to...@apache.org on 2016/08/15 07:19:09 UTC

kudu git commit: [util/env_posix.cc] fixed build on MacOS X

Repository: kudu
Updated Branches:
  refs/heads/master 28a9902ce -> 3dcf28f16


[util/env_posix.cc] fixed build on MacOS X

Fixed a tiny typo which broke build on MacOS X.
This is a follow-up for 13dde92b0fc42275c9bcc2954d0559830ac640e8.

Change-Id: I35c463c63132a17fd8d981fe0acb3e48a8f24318
Reviewed-on: http://gerrit.cloudera.org:8080/3978
Reviewed-by: Todd Lipcon <to...@apache.org>
Tested-by: Kudu Jenkins


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/3dcf28f1
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/3dcf28f1
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/3dcf28f1

Branch: refs/heads/master
Commit: 3dcf28f162445582810789b10098425494c4dee5
Parents: 28a9902
Author: Alexey Serbin <as...@cloudera.com>
Authored: Sun Aug 14 23:28:45 2016 -0700
Committer: Todd Lipcon <to...@apache.org>
Committed: Mon Aug 15 07:18:37 2016 +0000

----------------------------------------------------------------------
 src/kudu/util/env_posix.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/3dcf28f1/src/kudu/util/env_posix.cc
----------------------------------------------------------------------
diff --git a/src/kudu/util/env_posix.cc b/src/kudu/util/env_posix.cc
index 4bc14f8..60d1df4 100644
--- a/src/kudu/util/env_posix.cc
+++ b/src/kudu/util/env_posix.cc
@@ -490,7 +490,7 @@ class PosixWritableFile : public WritableFile {
       if (PREDICT_FALSE(written != data.size())) {
         return Status::IOError(
             Substitute("pwrite error: expected to write $0 bytes, wrote $1 bytes instead"
-                       " (perhaps the disk is out of space)",,
+                       " (perhaps the disk is out of space)",
                        data.size(), written));
       }
     }