mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
Another fix for Linux build
This commit is contained in:
parent
3181bdcb9b
commit
66a0f18410
1 changed files with 1 additions and 1 deletions
|
@ -699,7 +699,7 @@ void proc_update_jiffies() {
|
|||
for (job = j.next(); job; job = j.next()) {
|
||||
for (process_ptr_t &p : job->processes) {
|
||||
gettimeofday(&p->last_time, 0);
|
||||
p->last_jiffies = proc_get_jiffies(p);
|
||||
p->last_jiffies = proc_get_jiffies(p.get());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue