diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2011-12-16 11:15:58 +0200 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2011-12-16 11:15:58 +0200 |
commit | 6b454a7621efa197b3f922c1ea840b359ac573b2 (patch) | |
tree | 2da0e587a72bafcb320537d24918e1cf65fb0048 /src/video_out | |
parent | e6491929982ee688487bee2b8ace43e3ae9ffb3f (diff) | |
download | xine-lib-6b454a7621efa197b3f922c1ea840b359ac573b2.tar.gz xine-lib-6b454a7621efa197b3f922c1ea840b359ac573b2.tar.bz2 |
Removed write-only variables
--HG--
branch : point-release
Diffstat (limited to 'src/video_out')
-rw-r--r-- | src/video_out/video_out_syncfb.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/video_out/video_out_syncfb.c b/src/video_out/video_out_syncfb.c index 4cb11dc93..68a04c33d 100644 --- a/src/video_out/video_out_syncfb.c +++ b/src/video_out/video_out_syncfb.c @@ -874,14 +874,11 @@ static vo_driver_t *open_plugin (video_driver_class_t *class_gen, const void *vi syncfb_class_t *class = (syncfb_class_t *) class_gen; config_values_t *config = class->config; syncfb_driver_t* this; - Display* display = NULL; unsigned int i; x11_visual_t* visual = (x11_visual_t *) visual_gen; XColor dummy; XWindowAttributes attr; - display = visual->display; - if(!(this = calloc(1, sizeof (syncfb_driver_t)))) return NULL; |