diff options
author | unknown <msvensson@shellback.(none)> | 2006-09-21 20:37:35 +0200 |
---|---|---|
committer | unknown <msvensson@shellback.(none)> | 2006-09-21 20:37:35 +0200 |
commit | 90d71b22c8d5e688470644c124a27895c0c9f6fa (patch) | |
tree | b0e8bf168174980a4a52cc5faae288ef4002e464 /storage/innobase | |
parent | 6630bd03d681478d8f8c28eb2425adf393e3ddfc (diff) | |
download | mariadb-git-90d71b22c8d5e688470644c124a27895c0c9f6fa.tar.gz |
Fix Solaris 10 compile failure
- Void function can't return a value
storage/innobase/dict/dict0dict.c:
Void function can't return a value
Diffstat (limited to 'storage/innobase')
-rw-r--r-- | storage/innobase/dict/dict0dict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/dict/dict0dict.c b/storage/innobase/dict/dict0dict.c index 209054151f4..44a374fe550 100644 --- a/storage/innobase/dict/dict0dict.c +++ b/storage/innobase/dict/dict0dict.c @@ -334,7 +334,7 @@ dict_col_copy_type_noninline( const dict_col_t* col, /* in: column */ dtype_t* type) /* out: data type */ { - return(dict_col_copy_type(col, type)); + dict_col_copy_type(col, type); } /************************************************************************ |