Repository: trafficserver Updated Branches: refs/heads/master 669a45438 -> 691a49abc
TS-3761 Fix version.c example to build properly with tsxs Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/691a49ab Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/691a49ab Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/691a49ab Branch: refs/heads/master Commit: 691a49abceb3bab3ffa1998b94995489536626d1 Parents: 669a454 Author: Leif Hedstrom <[email protected]> Authored: Mon Jul 13 16:29:51 2015 -0600 Committer: Leif Hedstrom <[email protected]> Committed: Mon Jul 13 16:29:51 2015 -0600 ---------------------------------------------------------------------- example/version/version.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/691a49ab/example/version/version.c ---------------------------------------------------------------------- diff --git a/example/version/version.c b/example/version/version.c index f5c8126..4020a0c 100644 --- a/example/version/version.c +++ b/example/version/version.c @@ -24,10 +24,9 @@ #include <stdio.h> #include "ts/ts.h" -#include "ts/ink_defs.h" void -TSPluginInit(int argc ATS_UNUSED, const char *argv[] ATS_UNUSED) +TSPluginInit(int argc , const char *argv[]) { TSPluginRegistrationInfo info;
