diff options
author | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2000-12-03 17:47:40 +0000 |
---|---|---|
committer | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2000-12-03 17:47:40 +0000 |
commit | 206209e868f17d066805a0a88e9f9064be5df7be (patch) | |
tree | ecd8d2b47d22101a0eaa8b92ce2e48455a8ab7d5 /test/testpipe.c | |
parent | d320556e8e2e50834ffcf52921ef4111ffee1097 (diff) | |
download | libapr-206209e868f17d066805a0a88e9f9064be5df7be.tar.gz |
Fix a bunch of type mis-matches in the test code.
Submitted by: Sam TH <sam@uchicago.edu>
Reviewed by: Ryan Bloom
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60867 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testpipe.c')
-rw-r--r-- | test/testpipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testpipe.c b/test/testpipe.c index 4f1bdb149..a06dc1547 100644 --- a/test/testpipe.c +++ b/test/testpipe.c @@ -104,7 +104,7 @@ int main(void) } fprintf(stdout, "\tReading from the pipe......."); - nbytes = (apr_ssize_t)strlen("this is a test"); + nbytes = strlen("this is a test"); buf = (char *)apr_palloc(context, nbytes + 1); if (apr_read(readp, buf, &nbytes) == APR_TIMEUP) { fprintf(stdout, "OK\n"); |