summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2006-03-02 23:13:37 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2006-03-02 23:13:37 +0000
commit5bb5ee33be7722ae91bc1c9781ffd8ab23f81ac8 (patch)
treef4dbb7955fa543396040e60c9f49a99c7b0601b2 /misc
parentbd67e4c1130d3e25240d88f39f69ed0447e4ec0f (diff)
downloadlibapr-5bb5ee33be7722ae91bc1c9781ffd8ab23f81ac8.tar.gz
Fix a typo caught by maxb
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@382552 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc')
-rw-r--r--misc/unix/rand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/unix/rand.c b/misc/unix/rand.c
index c9723f5ff..8e063533b 100644
--- a/misc/unix/rand.c
+++ b/misc/unix/rand.c
@@ -59,7 +59,7 @@ APR_DECLARE(apr_status_t) apr_os_uuid_get(unsigned char *uuid_data)
uuid_create(&g, &rv);
if (rv != uuid_s_ok)
- APR_EGENERAL;
+ return APR_EGENERAL;
memcpy(uuid_data, &g, sizeof(uuid_t));