summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-03-16 18:42:00 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-03-16 18:42:00 +0000
commit123fe497d61d62ca1989557ac47947c5246b691e (patch)
tree00ca881bd7115a8b99be09abad95e9e932d69d16 /test
parentef5001721d08be474774682bddcda65675a503ae (diff)
downloadlibapr-123fe497d61d62ca1989557ac47947c5246b691e.tar.gz
Back out some over-engineering. We use pid_t throughout - and this
'well known identifier' is entirely distict from an apr_os_proc_t [on some, they are equivialant, on Win32, os_proc_t is a proc handle.] Simplify s/APR_OS_PROC_T_FMT/APR_PID_T_FMT/, apr_os_foo types should never be represented as display entities. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63142 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r--test/testfmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testfmt.c b/test/testfmt.c
index 15e06b821..ad794c17b 100644
--- a/test/testfmt.c
+++ b/test/testfmt.c
@@ -77,8 +77,8 @@ int main(int argc, char *argv[])
}
{
- apr_os_proc_t var = 0;
- sprintf(buf, "%" APR_OS_PROC_T_FMT, var);
+ pid_t var = 0;
+ sprintf(buf, "%" APR_PID_T_FMT, var);
}
{