summaryrefslogtreecommitdiff
path: root/file_io/os2/maperrorcode.c
diff options
context:
space:
mode:
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 282338bba..f4496a84f 100644
--- a/file_io/os2/maperrorcode.c
+++ b/file_io/os2/maperrorcode.c
@@ -85,11 +85,11 @@ int apr_canonical_error(apr_status_t err)
err -= APR_OS_START_SYSERR;
for (index=0; index<MAPSIZE && errormap[index][0] != err; index++);
-
+
if (index<MAPSIZE)
rv = errormap[index][1];
else
fprintf(stderr, "apr_canonical_error: Unknown OS/2 error code %d\n", err );
-
+
return rv;
}