Re: [PATCH] tablet-shell: Fix compiling error for using stderr.

2012-06-14 Thread Pekka Paalanen
On Thu, 14 Jun 2012 15:07:47 +0800 zhiwen...@linux.intel.com wrote: > From: Alex Wu > > Not including the stdio.h makes this compiling error. > --- > src/tablet-shell.c |1 + > 1 file changed, 1 insertion(+) > > diff --git a/src/tablet-shell.c b/src/tablet-shell.c > index 91b1514..56512f6

[PATCH] tablet-shell: Fix compiling error for using stderr.

2012-06-14 Thread zhiwen . wu
From: Alex Wu Not including the stdio.h makes this compiling error. --- src/tablet-shell.c |1 + 1 file changed, 1 insertion(+) diff --git a/src/tablet-shell.c b/src/tablet-shell.c index 91b1514..56512f6 100644 --- a/src/tablet-shell.c +++ b/src/tablet-shell.c @@ -23,6 +23,7 @@ #include

[PATCH weston] Increment frame_counter before calling animation->frame().

2012-06-14 Thread Scott Moreau
Iterate the frame_counter before calling animation->frame() because the animation might be destroyed in this path. The first frame is now 1 (not 0) in the animation frame handlers. --- This fixes bug #51057 src/compositor.c |6 +++--- src/util.c |4 ++-- 2 files changed, 5 insert