lib: rename plural file names to singular
[babeltrace.git] / plugins / utils / trimmer / iterator.c
index c0503d257ec74a608e0dfd33abd952d89527d9f3..29e9951b0f121c7f6ec8f22a6a310b79ce3582e2 100644 (file)
@@ -137,7 +137,7 @@ int update_lazy_bound(struct trimmer_bound *bound, const char *name,
                }
                tm.tm_sec = bound->lazy_values.ss;
                tm.tm_min = bound->lazy_values.mm;
-               tm.tm_hour = bound->lazy_values.hh;
+               tm.tm_hour = bound->lazy_value.hh;
                timeval = bt_timegm(&tm);
                if (timeval < 0) {
                        BT_LOGE("Failure in bt_timegm(), incorrectly formatted %s timestamp",
@@ -152,7 +152,7 @@ int update_lazy_bound(struct trimmer_bound *bound, const char *name,
                }
                tm.tm_sec = bound->lazy_values.ss;
                tm.tm_min = bound->lazy_values.mm;
-               tm.tm_hour = bound->lazy_values.hh;
+               tm.tm_hour = bound->lazy_value.hh;
                timeval = mktime(&tm);
                if (timeval < 0) {
                        BT_LOGE("Failure in mktime(), incorrectly formatted %s timestamp",
This page took 0.023799 seconds and 4 git commands to generate.