diff options
author | tonu@hundin.mysql.fi <> | 2001-06-08 22:28:57 +0300 |
---|---|---|
committer | tonu@hundin.mysql.fi <> | 2001-06-08 22:28:57 +0300 |
commit | bc2aca9a631c719310ba4aa30ea844a62763a8a4 (patch) | |
tree | e4b889f31b7f39f63449053c9966b889a695698a /vio/viosslfactories.c | |
parent | e1d12383fa00c86ae4d3aa901f507ab2d8083cb3 (diff) | |
download | mariadb-git-bc2aca9a631c719310ba4aa30ea844a62763a8a4.tar.gz |
Fixed compile-time warnings
Diffstat (limited to 'vio/viosslfactories.c')
-rw-r--r-- | vio/viosslfactories.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vio/viosslfactories.c b/vio/viosslfactories.c index dfe67b503f8..4be956ed9ba 100644 --- a/vio/viosslfactories.c +++ b/vio/viosslfactories.c @@ -186,7 +186,7 @@ struct st_VioSSLConnectorFd* new_VioSSLConnectorFd(const char* key_file, DBUG_RETURN(ptr); ctor_failure: DBUG_PRINT("exit", ("there was an error")); - DBUG_VOID_RETURN; + DBUG_RETURN(0); } @@ -267,7 +267,7 @@ new_VioSSLAcceptorFd(const char* key_file, DBUG_RETURN(ptr); ctor_failure: DBUG_PRINT("exit", ("there was an error")); - DBUG_VOID_RETURN; + DBUG_RETURN(0); } |