Author: trawick
Date: Thu Mar 14 13:22:07 2013
New Revision: 1456418
URL: http://svn.apache.org/r1456418
Log:
remove ignored rv
Modified:
apr/apr/trunk/test/echod.c
Modified: apr/apr/trunk/test/echod.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/echod.c?rev=1456418&r1=1456417&r2=1456418&view=diff
==============================================================================
--- apr/apr/trunk/test/echod.c (original)
+++ apr/apr/trunk/test/echod.c Thu Mar 14 13:22:07 2013
@@ -113,7 +113,6 @@ static apr_status_t glassToWall(apr_port
int main(int argc, char **argv)
{
apr_pool_t *pool;
- apr_status_t rv;
apr_port_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;
}
|