diff options
author | lloyd <[email protected]> | 2015-03-02 23:29:28 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-03-02 23:29:28 +0000 |
commit | 94af0a6d70a6a55d9df609ce0092bcaafa52c493 (patch) | |
tree | 9547399a96f71f3619ae4d5bb700c9bfa946df28 | |
parent | 38cc1747b615081539893aa6c8bc02e6e1960d25 (diff) |
Avoid requiring a system header here
-rw-r--r-- | src/lib/entropy/unix_procs/unix_procs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/entropy/unix_procs/unix_procs.h b/src/lib/entropy/unix_procs/unix_procs.h index b2505fcd5..eb798b207 100644 --- a/src/lib/entropy/unix_procs/unix_procs.h +++ b/src/lib/entropy/unix_procs/unix_procs.h @@ -62,7 +62,7 @@ class Unix_EntropySource : public EntropySource Unix_Process& operator=(const Unix_Process&) = delete; private: int m_fd = -1; - pid_t m_pid = -1; + int m_pid = -1; }; const std::vector<std::string>& next_source(); |