diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2002-07-09 22:52:06 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2002-07-09 22:52:06 +0000 |
commit | 0798ea30ab353aef7dfee233b0b6ae289e8e16ac (patch) | |
tree | 0b26841a5af89d3396e2cb443674df7266fe0038 /misc/win32 | |
parent | 9cfa803f18cac4e115ac9f834f4d25e6aea8e2c0 (diff) | |
download | apr-0798ea30ab353aef7dfee233b0b6ae289e8e16ac.tar.gz |
Hadn't saved the file complete when committing. apr_oslevel_get will no
longer take a pool* arg.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63593 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc/win32')
-rw-r--r-- | misc/win32/start.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/win32/start.c b/misc/win32/start.c index c80fdb03e..48c588cc3 100644 --- a/misc/win32/start.c +++ b/misc/win32/start.c @@ -200,7 +200,7 @@ APR_DECLARE(apr_status_t) apr_initialize(void) } /* Initialize apr_os_level global */ - if (apr_get_oslevel(NULL, &osver) != APR_SUCCESS) { + if (apr_get_oslevel(&osver) != APR_SUCCESS) { return APR_EEXIST; } |