Skip to content

Commit

Permalink
Bug 1059132 - Bustage fix: fix printf format.
Browse files Browse the repository at this point in the history
  • Loading branch information
padenot committed Aug 28, 2014
1 parent 6905914 commit 5a8c3cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/media/GraphDriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ void GraphDriver::UpdateStateComputedTime(GraphTime aStateComputedTime)
// means the driver would be have been blocking indefinitly, but the graph has
// been woken up right after having been to sleep.
if (aStateComputedTime < mStateComputedTime) {
printf("State time can't go backward %ld < mStateComputedTime.\n", aStateComputedTime, mStateComputedTime);
printf("State time can't go backward %ld < %ld.\n", static_cast<long>(aStateComputedTime), static_cast<long>(mStateComputedTime));
}

mStateComputedTime = aStateComputedTime;
Expand Down

0 comments on commit 5a8c3cf

Please sign in to comment.