Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
76c6cd03
Commit
76c6cd03
authored
May 22, 2014
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compiler error if LZO is not installed.
parent
ff3f63c3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
storage/innobase/os/os0file.cc
storage/innobase/os/os0file.cc
+1
-1
storage/xtradb/os/os0file.cc
storage/xtradb/os/os0file.cc
+1
-1
No files found.
storage/innobase/os/os0file.cc
View file @
76c6cd03
...
@@ -228,7 +228,7 @@ struct os_aio_slot_t{
...
@@ -228,7 +228,7 @@ struct os_aio_slot_t{
#ifdef HAVE_LZO
#ifdef HAVE_LZO
byte
lzo_mem
[
LZO1X_1_15_MEM_COMPRESS
];
byte
lzo_mem
[
LZO1X_1_15_MEM_COMPRESS
];
#else
#else
byte
lzo_mem
;
/* Temporal memory used by LZO */
byte
lzo_mem
[
1
]
;
/* Temporal memory used by LZO */
#endif
#endif
};
};
...
...
storage/xtradb/os/os0file.cc
View file @
76c6cd03
...
@@ -237,7 +237,7 @@ struct os_aio_slot_t{
...
@@ -237,7 +237,7 @@ struct os_aio_slot_t{
#ifdef HAVE_LZO
#ifdef HAVE_LZO
byte
lzo_mem
[
LZO1X_1_15_MEM_COMPRESS
];
byte
lzo_mem
[
LZO1X_1_15_MEM_COMPRESS
];
#else
#else
byte
lzo_mem
;
/* Temporal memory used by LZO */
byte
lzo_mem
[
1
]
;
/* Temporal memory used by LZO */
#endif
#endif
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment