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

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);
}