mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Correct a couple of typos.
This commit is contained in:
parent
db187f1d6f
commit
72cc7e2dce
1 changed files with 2 additions and 2 deletions
|
|
@ -742,7 +742,7 @@ restart:
|
|||
|
||||
/*
|
||||
* Make a process sleeping on the specified identifier runnable.
|
||||
* May wake more than one process if a target prcoess is currently
|
||||
* May wake more than one process if a target process is currently
|
||||
* swapped out.
|
||||
*/
|
||||
void
|
||||
|
|
@ -822,7 +822,7 @@ mi_switch()
|
|||
*/
|
||||
microuptime(&new_switchtime);
|
||||
if (timevalcmp(&new_switchtime, &switchtime, <)) {
|
||||
printf("microuptime() went backwards (%ld.%06ld -> %ld,%06ld)\n",
|
||||
printf("microuptime() went backwards (%ld.%06ld -> %ld.%06ld)\n",
|
||||
switchtime.tv_sec, switchtime.tv_usec,
|
||||
new_switchtime.tv_sec, new_switchtime.tv_usec);
|
||||
new_switchtime = switchtime;
|
||||
|
|
|
|||
Loading…
Reference in a new issue