summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2013-03-30 14:20:44 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2013-03-30 14:20:44 +0000
commitbe39bb4989499f94f512141620d4ec097f1b903d (patch)
treeb2d8d5ad46408d0a05b805c4927b1e3475aa8127
parenta6a48bd679b3d42bc965193739c2cc861f9754d0 (diff)
downloadlibapr-be39bb4989499f94f512141620d4ec097f1b903d.tar.gz
merge r1456418 from trunk
remove ignored rv git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.5.x@1462764 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--test/echod.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/echod.c b/test/echod.c
index c78e90fd5..87f386abf 100644
--- a/test/echod.c
+++ b/test/echod.c
@@ -113,7 +113,6 @@ static apr_status_t glassToWall(apr_int16_t port, apr_pool_t *parent)
int main(int argc, char **argv)
{
apr_pool_t *pool;
- apr_status_t rv;
apr_int16_t theport = 4747;
printf("APR Test Application: echod\n");
@@ -129,7 +128,7 @@ int main(int argc, char **argv)
}
fprintf(stdout, "Starting to listen on port %d\n", theport);
- rv = glassToWall(theport, pool);
+ glassToWall(theport, pool);
return 0;
}