diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2000-08-06 06:07:33 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2000-08-06 06:07:33 +0000 |
commit | 06b2035cc7444370e4ad913f25e400545915a743 (patch) | |
tree | 4f0eea47f7ec42ad43d4b3fad7f7d5907e416115 /test/testargs.c | |
parent | 6105382e1c48011d628cd0562e87471ca605e8cb (diff) | |
download | libapr-06b2035cc7444370e4ad913f25e400545915a743.tar.gz |
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
Diffstat (limited to 'test/testargs.c')
-rw-r--r-- | test/testargs.c | 6 |
1 files changed, 3 insertions, 3 deletions
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"); |