mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
ndb_version.h.in : Fix a syntax error (variable declaration came too late).
This commit is contained in:
parent
ae9a5a2fea
commit
485a656df8
1 changed files with 3 additions and 2 deletions
|
@ -103,11 +103,12 @@ inline
|
|||
int
|
||||
ndb_check_prep_copy_frag_version(Uint32 version)
|
||||
{
|
||||
const Uint32 major = (version >> 16) & 0xFF;
|
||||
const Uint32 minor = (version >> 8) & 0xFF;
|
||||
|
||||
if (version == NDB_VERSION_D)
|
||||
return 2;
|
||||
|
||||
const Uint32 major = (version >> 16) & 0xFF;
|
||||
const Uint32 minor = (version >> 8) & 0xFF;
|
||||
if (major >= 6)
|
||||
{
|
||||
if (minor == 2)
|
||||
|
|
Loading…
Reference in a new issue