From: Ruben Kerkhof Date: Wed, 3 Aug 2016 15:33:19 +0000 (+0200) Subject: pinba plugin: fix warning on Solaris X-Git-Tag: collectd-5.6.0~121 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=07a09d229050d12df243c84889aa745700ad267b;p=collectd.git 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.) --- 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;