aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-08-26 14:04:15 +0000
committerlloyd <[email protected]>2013-08-26 14:04:15 +0000
commitf40b460f5e5ebd5af4a760dbfe7904807ac8e3e7 (patch)
treeff0aec5e383b534f580e631b04f3f0402cca04e8 /src
parenta2443d682d13032b205d0b6814c3df1a223f77b2 (diff)
Compile fix
Diffstat (limited to 'src')
-rw-r--r--src/filters/transform_filter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filters/transform_filter.cpp b/src/filters/transform_filter.cpp
index e3913a252..fc1125ad8 100644
--- a/src/filters/transform_filter.cpp
+++ b/src/filters/transform_filter.cpp
@@ -15,8 +15,8 @@ Transformation_Filter::Transformation_Filter(Transformation* transform) :
Buffered_Filter(transform->update_granularity(),
transform->minimum_final_size()),
m_nonce(transform->default_nonce_size() == 0),
- m_transform(transform)
- m_buffer(m_transform->update_granularity()),
+ m_transform(transform),
+ m_buffer(m_transform->update_granularity())
{
}