Repository: trafficserver Updated Branches: refs/heads/master 0390f6d31 -> 66ccfd0ed
TS-306: Fix signed/unsigned issue for Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/66ccfd0e Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/66ccfd0e Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/66ccfd0e Branch: refs/heads/master Commit: 66ccfd0ed838d08b7e4fbe9892c39110c1d9fef6 Parents: 0390f6d Author: Alan M. Carroll <[email protected]> Authored: Wed Nov 4 08:37:14 2015 -0600 Committer: Alan M. Carroll <[email protected]> Committed: Wed Nov 4 08:37:14 2015 -0600 ---------------------------------------------------------------------- lib/ts/Diags.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/66ccfd0e/lib/ts/Diags.cc ---------------------------------------------------------------------- diff --git a/lib/ts/Diags.cc b/lib/ts/Diags.cc index 0157248..00f802c 100644 --- a/lib/ts/Diags.cc +++ b/lib/ts/Diags.cc @@ -50,7 +50,7 @@ bool DiagsConfigState::enabled[2] = {false, false}; // Global, used for all diagnostics inkcoreapi Diags *diags = NULL; -template <unsigned Size> +template <int Size> static void vprintline(FILE *fp, char(&buffer)[Size], va_list ap) {
