diff options
author | unknown <mskold@mysql.com> | 2006-02-23 16:25:52 +0100 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2006-02-23 16:25:52 +0100 |
commit | a3bc77d8de393e4558e45ac0127cb0ec16e20168 (patch) | |
tree | 7a97e8f7c458306411424c0662525277d61a537c /storage | |
parent | 50ba49988affe5cea38bb40a66468b062ff81937 (diff) | |
download | mariadb-git-a3bc77d8de393e4558e45ac0127cb0ec16e20168.tar.gz |
Added missing DBUG_RETURN
Diffstat (limited to 'storage')
-rw-r--r-- | storage/ndb/src/ndbapi/Ndb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/ndb/src/ndbapi/Ndb.cpp b/storage/ndb/src/ndbapi/Ndb.cpp index 75b8f58a813..fefd573b2ff 100644 --- a/storage/ndb/src/ndbapi/Ndb.cpp +++ b/storage/ndb/src/ndbapi/Ndb.cpp @@ -1200,7 +1200,7 @@ Ndb::internalize_index_name(const NdbTableImpl * table, if (!table) { DBUG_PRINT("error", ("!table")); - return ret; + DBUG_RETURN(ret); } if (fullyQualifiedNames) |