~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_time.cc

  • Committer: Monty Taylor
  • Date: 2009-05-22 17:07:52 UTC
  • mfrom: (1022.4.2 update-to-gcc-44)
  • mto: This revision was merged to the branch mainline in revision 1036.
  • Revision ID: mordred@inaugust.com-20090522170752-vvd40ft31uhmc58w
Merged GCC 4.4 support from lp:~mordred/drizzle/update-to-gcc-44

Show diffs side-by-side

added added

removed removed

Lines of Context:
718
718
  my_time.hour=         (uint32_t) l_time->tm_hour;
719
719
  my_time.minute=       (uint32_t) l_time->tm_min;
720
720
  my_time.second=       (uint32_t) l_time->tm_sec;
 
721
  my_time.time_type=    DRIZZLE_TIMESTAMP_NONE;
 
722
  my_time.second_part=  0;
 
723
  my_time.neg=          false;
721
724
  my_system_gmt_sec(&my_time, &my_time_zone, &not_used); /* Init my_time_zone */
722
725
}
723
726