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
9ad2cd8c
Commit
9ad2cd8c
authored
Sep 06, 2001
by
monty@work.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Portability fixes
parent
6fac59e5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
libmysql/libmysql.c
libmysql/libmysql.c
+0
-1
sql/log_event.cc
sql/log_event.cc
+1
-1
No files found.
libmysql/libmysql.c
View file @
9ad2cd8c
...
...
@@ -15,7 +15,6 @@
Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA */
#define DONT_USE_RAID
#include <global.h>
#if defined(__WIN__) || defined(_WIN32) || defined(_WIN64)
#include <winsock.h>
...
...
sql/log_event.cc
View file @
9ad2cd8c
...
...
@@ -278,7 +278,7 @@ void Log_event::print_timestamp(FILE* file, time_t* ts)
ts
=
&
when
;
}
#ifdef MYSQL_SERVER
res
=
localtime_r
(
ts
,
&
tm_tmp
);
localtime_r
(
ts
,(
res
=
&
tm_tmp
)
);
#else
res
=
localtime
(
ts
);
#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