Fix: double similar condition
[lttng-tools.git] / src / bin / lttng-sessiond / notification-thread-events.c
index 39462b54306bd916248aca788e59dfc0724b7718..6d5e625fc12f1dc5aa0544fab19dd7f0425e117d 100644 (file)
@@ -295,7 +295,7 @@ unsigned long lttng_condition_buffer_usage_hash(
 
                val = condition->threshold_ratio.value * (double) UINT32_MAX;
                hash ^= hash_key_u64(&val, lttng_ht_seed);
-       } else if (condition->threshold_ratio.set) {
+       } else if (condition->threshold_bytes.set) {
                uint64_t val;
 
                val = condition->threshold_bytes.value;
This page took 0.023808 seconds and 5 git commands to generate.