Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 70864593 authored by Rafal Slawik's avatar Rafal Slawik Committed by Android (Google) Code Review
Browse files

Merge "Fix: pass frequency as int" into sc-dev

parents 01ab7bcd 03b473db
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1486,7 +1486,7 @@ public class StatsPullAtomService extends SystemService {
        }
        for (int freqIndex = 0; freqIndex < timesMs.length; ++freqIndex) {
            int cluster = freqsClusters[freqIndex];
            long freq = freqs[freqIndex];
            int freq = (int) freqs[freqIndex];
            long timeMs = timesMs[freqIndex];
            pulledData.add(FrameworkStatsLog.buildStatsEvent(atomTag, cluster, freq, timeMs));
        }