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
82a3e8cf
Commit
82a3e8cf
authored
Aug 27, 2007
by
tsmith@ramayana.hindu.god
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some Windows compiler warnings.
parent
0924d086
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
storage/innobase/dict/dict0mem.c
storage/innobase/dict/dict0mem.c
+1
-1
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+1
-1
No files found.
storage/innobase/dict/dict0mem.c
View file @
82a3e8cf
...
...
@@ -209,7 +209,7 @@ dict_mem_table_add_col(
col
=
(
dict_col_t
*
)
dict_table_get_nth_col
(
table
,
i
);
col
->
ind
=
i
;
col
->
ind
=
(
unsigned
int
)
i
;
col
->
ord_part
=
0
;
col
->
mtype
=
(
unsigned
int
)
mtype
;
...
...
storage/innobase/handler/ha_innodb.cc
View file @
82a3e8cf
...
...
@@ -7221,7 +7221,7 @@ ulong
ha_innobase
::
innobase_get_auto_increment
(
ulonglong
*
value
)
/* out: autoinc value */
{
ul
int
error
;
ul
ong
error
;
do
{
error
=
innobase_autoinc_lock
();
...
...
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