Skip to content

Commit

Permalink
msm8226: Fix compilation error
Browse files Browse the repository at this point in the history
PRIu64 requires a space before and after strings.

Bug: 27336841
Change-Id: Idc4c8faab9ec15c69d7a1cff83683c17b12d68a4
  • Loading branch information
Prashant Malani committed Mar 4, 2016
1 parent 6f3fd9e commit cde4bf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msm8226/libhwcomposer/hwc_vsync.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static void handle_vsync_event(hwc_context_t* ctx, int dpy, char *data)
timestamp = strtoull(data + strlen("VSYNC="), NULL, 0);
}
// send timestamp to SurfaceFlinger
ALOGD_IF (ctx->vstate.debug, "%s: timestamp %"PRIu64" sent to SF for dpy=%d",
ALOGD_IF (ctx->vstate.debug, "%s: timestamp %" PRIu64 " sent to SF for dpy=%d",
__FUNCTION__, timestamp, dpy);
ctx->proc->vsync(ctx->proc, dpy, timestamp);
}
Expand Down

0 comments on commit cde4bf9

Please sign in to comment.