summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorguilhem@mysql.com <>2004-07-30 10:08:37 +0200
committerguilhem@mysql.com <>2004-07-30 10:08:37 +0200
commit80e74c80aa8c953aa9d0503560f0b1eb15d2fd50 (patch)
tree1f51a89cfb6c9fcc06d25b8e492dfd4ee6e4c3f2
parent3262c28710d7e750f18960977fad5903a2b2cd5e (diff)
downloadmariadb-git-80e74c80aa8c953aa9d0503560f0b1eb15d2fd50.tar.gz
syntax fix: superfluous ';' which caused a problem with gcc 2.95
-rw-r--r--sql-common/my_time.c2
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;