Fix white space botch: use carriage returns rather than tabs.

This commit is contained in:
Robert Watson 2008-12-31 23:22:45 +00:00
parent 9094ffdfe3
commit efcde1e8c7

View File

@ -169,7 +169,8 @@ struct audit_pipe {
/* /*
* Current pending record list. Protected by a combination of ap_mtx * Current pending record list. Protected by a combination of ap_mtx
* and ap_sx. Note particularly that *both* locks are required to * and ap_sx. Note particularly that *both* locks are required to
* remove a record from the head of the queue, as an in-progress read * may sleep while copying and therefore cannot hold ap_mtx. * remove a record from the head of the queue, as an in-progress read
* may sleep while copying and therefore cannot hold ap_mtx.
*/ */
TAILQ_HEAD(, audit_pipe_entry) ap_queue; TAILQ_HEAD(, audit_pipe_entry) ap_queue;