e_presentation_time: fix build error on 64bit system 72/218772/1 submit/tizen/20191128.045039
authorChangyeon Lee <cyeon.lee@samsung.com>
Thu, 28 Nov 2019 04:29:58 +0000 (13:29 +0900)
committerChangyeon Lee <cyeon.lee@samsung.com>
Thu, 28 Nov 2019 04:37:23 +0000 (13:37 +0900)
Change-Id: Ifb73453f4884ca48c805fca030a7394475588a1f

src/bin/e_presentation_time.c

index e7190327d35dfc348fdaa61bfc10463617c2598b..c88486d3dbcda6bea3d5c24501a2e7e6046acc8d 100644 (file)
@@ -358,8 +358,9 @@ _e_presentation_time_feedback_present(E_Presentation_Time_Feedback *feedback,
    if (output->config.mode.refresh > 0)
      refresh_nsec = 1000000000000LL / output->config.mode.refresh;
 
-   PRSTT_TRACE("feedback:%p Present tv_sec:%llu tv_nsec:%u refresh_nsec:%u seq:%llu flags:0x%x(%s)",
-               NULL, feedback, tv_sec, tv_nsec, refresh_nsec, seq, flags, _get_flags_string(flags));
+   PRSTT_TRACE("feedback:%p Present tv_sec:%u tv_nsec:%lu refresh_nsec:%u seq:%lu flags:0x%x(%s)",
+               NULL, feedback, tv_sec, (long unsigned int)tv_nsec, refresh_nsec, (long unsigned int)seq,
+               flags, _get_flags_string(flags));
 
    wp_presentation_feedback_send_presented(feedback->resource,
                                            tv_sec >> 32, tv_sec & 0xffffffff,