aboutsummaryrefslogtreecommitdiff
path: root/file_io/os2/maperrorcode.c
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2000-08-02 05:26:45 +0000
committerDoug MacEachern <dougm@apache.org>2000-08-02 05:26:45 +0000
commit1a1463dbfc6e28b6a5852142b0c87d4abe33c3d9 (patch)
tree4da0bfd73d36292921960aaabc877a57e680b8c4 /file_io/os2/maperrorcode.c
parent4dd06339dd5b46bd735c56dc3738146416f52ccf (diff)
downloadapr-1a1463dbfc6e28b6a5852142b0c87d4abe33c3d9.tar.gz
apr-1a1463dbfc6e28b6a5852142b0c87d4abe33c3d9.zip
prefix libapr functions and types with apr_
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60470 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/os2/maperrorcode.c')
-rw-r--r--file_io/os2/maperrorcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file_io/os2/maperrorcode.c b/file_io/os2/maperrorcode.c
index 209eec026..5fa398151 100644
--- a/file_io/os2/maperrorcode.c
+++ b/file_io/os2/maperrorcode.c
@@ -115,7 +115,7 @@ static int errormap[][2] = {
#define MAPSIZE (sizeof(errormap)/sizeof(errormap[0]))
-int ap_canonical_error(ap_status_t err)
+int apr_canonical_error(apr_status_t err)
{
int rv = -1, index;
@@ -129,7 +129,7 @@ int ap_canonical_error(ap_status_t err)
if (index<MAPSIZE)
rv = errormap[index][1];
else
- fprintf(stderr, "ap_canonical_error: Unknown OS/2 error code %d\n", err );
+ fprintf(stderr, "apr_canonical_error: Unknown OS/2 error code %d\n", err );
return rv;
}