Fix: double similar condition
[lttng-tools.git] / src / bin / lttng-sessiond / notification-thread-events.c
index 1793cac6b7e98804328ecc7f8d9fb29af5538beb..2f738bb047db0b3656c2a215dcb7143b49792707 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.023832 seconds and 4 git commands to generate.