From 06b2035cc7444370e4ad913f25e400545915a743 Mon Sep 17 00:00:00 2001 From: wrowe Date: Sun, 6 Aug 2000 06:07:33 +0000 Subject: Remaining cleanup of ap_ -> apr_ and AP_ -> APR_ transformation... see src/lib/apr/apr_compat.h for most details. Also a few minor nits to get Win32 to build. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60481 13f79535-47bb-0310-9956-ffa450edef68 --- test/testargs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/testargs.c') diff --git a/test/testargs.c b/test/testargs.c index 448bf5cb8..9ab990679 100644 --- a/test/testargs.c +++ b/test/testargs.c @@ -79,12 +79,12 @@ int main(int argc, char * const argv[]) printf("option %c\n", data); break; case 'c': - printf("option %c with %s\n", data, ap_optarg); + printf("option %c with %s\n", data, apr_optarg); break; case 'd': printf("option %c", data); - if (ap_optarg) { - printf(" with %s\n", ap_optarg); + if (apr_optarg) { + printf(" with %s\n", apr_optarg); } else { printf("\n"); -- cgit v1.2.1