mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Fix compiling warning on 64 bits system.
This commit is contained in:
parent
02d48226cc
commit
3e70c6f047
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=153267
1 changed files with 1 additions and 1 deletions
|
@ -1515,7 +1515,7 @@ itimers_event_hook(void *arg, struct proc *p)
|
|||
{
|
||||
struct itimers *its;
|
||||
struct itimer *it;
|
||||
int event = (int)arg;
|
||||
int event = (int)(intptr_t)arg;
|
||||
int i;
|
||||
|
||||
if (p->p_itimers != NULL) {
|
||||
|
|
Loading…
Reference in a new issue