From 38770ccdf75a9018ff603cc7b4c0a0d808d660f3 Mon Sep 17 00:00:00 2001 From: Srivats P Date: Sat, 28 Jan 2017 10:55:07 +0530 Subject: [PATCH] Bugfix: Fix failure parsing Ostinato file format --- common/fileformat.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/fileformat.proto b/common/fileformat.proto index 10339d7e..36e6cced 100644 --- a/common/fileformat.proto +++ b/common/fileformat.proto @@ -88,7 +88,7 @@ message File { // FieldNumber 1 is reserved and MUST not be used! required bytes magic_value = 2; required FileMetaData meta_data = 3; - optional FileContent content_matter = 9; + optional FileContentMatter content_matter = 9; required fixed32 checksum_value = 15; }