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

Commit 90717e2d authored by Aalique Grahame's avatar Aalique Grahame
Browse files

hal: update timestamp type

Update timestamp type to match the type in the header file.

CRs-Fixed: 2278317
Change-Id: I9ac1694e015fd8fc6eccb9014cf77c0755502bbd
parent 3fcb2d55
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5067,7 +5067,7 @@ static int out_get_mmap_position(const struct audio_stream_out *stream,
        ALOGE("%s: %s", __func__, pcm_get_error(out->pcm));
        return ret;
    }
    position->time_nanoseconds = ts.tv_sec*1000000000L + ts.tv_nsec;
    position->time_nanoseconds = ts.tv_sec*1000000000LL + ts.tv_nsec;
    return 0;
}