time_t is an int on the Alpha, not long.

This commit is contained in:
peter 1999-12-12 20:59:29 +00:00
parent d7e6042db0
commit 4a19a65dcf

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