]> git.proxmox.com Git - mirror_qemu.git/commit
Fix OpenBSD build warning
authorBlue Swirl <blauwirbel@gmail.com>
Thu, 9 Sep 2010 19:13:04 +0000 (19:13 +0000)
committerBlue Swirl <blauwirbel@gmail.com>
Thu, 9 Sep 2010 19:13:04 +0000 (19:13 +0000)
commitd7d9b528b105b9e27d9ffa5dd1f773d484a559b4
treeb332009d675cade338d8e4a1a6508c75a60ec355
parentb76da7e376954ff25e7f9b6e9313f40b8300bf19
Fix OpenBSD build warning

Fix this warning:
  CC    savevm.o
/src/qemu/savevm.c: In function `do_savevm':
/src/qemu/savevm.c:1900: warning: passing arg 1 of `localtime_r' from incompatible pointer type

It looks like on OpenBSD the type of tv_sec in struct timeval is still
'long' instead of time_t as in most other OS. Fix by adding a cast.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
savevm.c