From 6982da07f34a6cf8dd94ae55903cf895782e6449 Mon Sep 17 00:00:00 2001 From: Frank Chen Date: Mon, 17 Jun 2019 18:16:57 -0700 Subject: [PATCH] Attempt #2 at fixing Windows test errors in snapshot dataset. PiperOrigin-RevId: 253701905 --- .../core/kernels/data/experimental/snapshot_dataset_op.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/core/kernels/data/experimental/snapshot_dataset_op.cc b/tensorflow/core/kernels/data/experimental/snapshot_dataset_op.cc index 28a9440ca32..42808ca8c1c 100644 --- a/tensorflow/core/kernels/data/experimental/snapshot_dataset_op.cc +++ b/tensorflow/core/kernels/data/experimental/snapshot_dataset_op.cc @@ -48,7 +48,7 @@ namespace { enum SnapshotMode { READER = 0, WRITER = 1, PASSTHROUGH = 2 }; // Defaults to 10 GiB per shard. -const int64 kDefaultShardSizeBytes = 10L * 1024 * 1024 * 1024; +const int64 kDefaultShardSizeBytes = 10LL * 1024 * 1024 * 1024; const size_t kHeaderSize = sizeof(uint64);