mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 09:11:07 -04:00
time_t is an int on the Alpha, not long.
This commit is contained in:
parent
7c229969ba
commit
72c10febd0
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue