Fix typo
Signed-off-by: Tor Lillqvist <tml@collabora.com> Change-Id: I6edf03cb46f80a1f88448718d9a2bba110ecaeb3
This commit is contained in:
parent
ed5569da30
commit
3e0e9fbe7d
1 changed files with 2 additions and 2 deletions
|
@ -85,13 +85,13 @@ class TraceFileWriter
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TraceFileWriter(const std::string& path,
|
TraceFileWriter(const std::string& path,
|
||||||
const bool recordOugoing,
|
const bool recordOutgoing,
|
||||||
const bool compress,
|
const bool compress,
|
||||||
const bool takeSnapshot,
|
const bool takeSnapshot,
|
||||||
const std::vector<std::string>& filters) :
|
const std::vector<std::string>& filters) :
|
||||||
_epochStart(std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::system_clock::now()
|
_epochStart(std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::system_clock::now()
|
||||||
.time_since_epoch()).count()),
|
.time_since_epoch()).count()),
|
||||||
_recordOutgoing(recordOugoing),
|
_recordOutgoing(recordOutgoing),
|
||||||
_compress(compress),
|
_compress(compress),
|
||||||
_takeSnapshot(takeSnapshot),
|
_takeSnapshot(takeSnapshot),
|
||||||
_path(Poco::Path(path).parent().toString()),
|
_path(Poco::Path(path).parent().toString()),
|
||||||
|
|
Loading…
Reference in a new issue