1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

time_t is an int on the Alpha, not long.

This commit is contained in:
Peter Wemm 1999-12-12 20:59:29 +00:00
parent 7c229969ba
commit 72c10febd0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=54515

View File

@ -1310,7 +1310,7 @@ mlx_pause_done(struct mlx_command *mc)
command == MLX_CMD_STOPCHANNEL ? "pause" : "resume", mlx_diagnose_command(mc));
} else if (command == MLX_CMD_STOPCHANNEL) {
device_printf(sc->mlx_dev, "channel %d pausing for %ld seconds\n",
channel, sc->mlx_pause.mp_howlong - time_second);
channel, (long)(sc->mlx_pause.mp_howlong - time_second));
} else {
device_printf(sc->mlx_dev, "channel %d resuming\n", channel);
}