aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2015-03-02 23:29:28 +0000
committerlloyd <[email protected]>2015-03-02 23:29:28 +0000
commit94af0a6d70a6a55d9df609ce0092bcaafa52c493 (patch)
tree9547399a96f71f3619ae4d5bb700c9bfa946df28
parent38cc1747b615081539893aa6c8bc02e6e1960d25 (diff)
Avoid requiring a system header here
-rw-r--r--src/lib/entropy/unix_procs/unix_procs.h2
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();