diff options
author | unknown <guilhem@mysql.com> | 2004-07-30 10:08:37 +0200 |
---|---|---|
committer | unknown <guilhem@mysql.com> | 2004-07-30 10:08:37 +0200 |
commit | be536c3a9e3282345ed8e3a256c9a8f02a8634a5 (patch) | |
tree | 1f51a89cfb6c9fcc06d25b8e492dfd4ee6e4c3f2 /sql-common/my_time.c | |
parent | 6fa88eacfafadc6beb4100b4f8f89a83af17da6d (diff) | |
download | mariadb-git-be536c3a9e3282345ed8e3a256c9a8f02a8634a5.tar.gz |
syntax fix: superfluous ';' which caused a problem with gcc 2.95
sql-common/my_time.c:
superfluous ; which caused a problem with gcc 2.95
Diffstat (limited to 'sql-common/my_time.c')
-rw-r--r-- | sql-common/my_time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-common/my_time.c b/sql-common/my_time.c index 24c19be47ba..df852ad8880 100644 --- a/sql-common/my_time.c +++ b/sql-common/my_time.c @@ -578,7 +578,7 @@ fractional: void init_time(void) { time_t seconds; - struct tm *l_time,tm_tmp;; + struct tm *l_time,tm_tmp; MYSQL_TIME my_time; bool not_used; |