From 07a09d229050d12df243c84889aa745700ad267b Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Wed, 3 Aug 2016 17:33:19 +0200 Subject: [PATCH] pinba plugin: fix warning on Solaris [libprotobuf WARNING google/protobuf/compiler/parser.cc:547] No syntax specified for the proto file: pinba.proto. Please use 'syntax = "proto2";' or 'syntax = "proto3";' to specify a syntax version. (Defaulted to proto2 syntax.) --- src/pinba.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pinba.proto b/src/pinba.proto index 5fd5439a..22e61c6a 100644 --- a/src/pinba.proto +++ b/src/pinba.proto @@ -1,3 +1,5 @@ +syntax = "proto2"; + package Pinba; option optimize_for = SPEED; -- 2.11.0