diff options
author | unknown <mats@romeo.(none)> | 2007-04-13 10:40:22 +0200 |
---|---|---|
committer | unknown <mats@romeo.(none)> | 2007-04-13 10:40:22 +0200 |
commit | d54c905f44f7c56a9971ae445dce2013974666a0 (patch) | |
tree | e214039e2f256dad533c8d24d08cbea029a4fba0 /sql/rpl_rli.h | |
parent | c301a05e78f066d8f0b3a52755141cc6013a2470 (diff) | |
download | mariadb-git-d54c905f44f7c56a9971ae445dce2013974666a0.tar.gz |
Fixing portability issues regarding use of time_t.
sql/rpl_rli.cc:
Changing signature for stmt_done() to use my_time_t instead of time_t.
sql/rpl_rli.h:
Changing signature for stmt_done() to use my_time_t instead of time_t.
Changing last_master_timestamp to use my_time_t instead of time_t.
Diffstat (limited to 'sql/rpl_rli.h')
-rw-r--r-- | sql/rpl_rli.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/rpl_rli.h b/sql/rpl_rli.h index 234d24a9569..7727c35ae53 100644 --- a/sql/rpl_rli.h +++ b/sql/rpl_rli.h @@ -184,7 +184,7 @@ typedef struct st_relay_log_info ulonglong future_group_master_log_pos; #endif - time_t last_master_timestamp; + my_time_t last_master_timestamp; void clear_slave_error(); void clear_until_condition(); @@ -345,7 +345,7 @@ typedef struct st_relay_log_info the <code>Seconds_behind_master</code> field. */ void stmt_done(my_off_t event_log_pos, - time_t event_creation_time); + my_time_t event_creation_time); /** |