diff options
author | Steve Zesch <[email protected]> | 2012-11-20 20:57:16 -0800 |
---|---|---|
committer | Steve Zesch <[email protected]> | 2012-11-20 20:57:16 -0800 |
commit | 3ba516419041962944da9f9bdf0cb55810a2ad02 (patch) | |
tree | 620d5fa2f8be7c9a65313c6a238cc349e6faaad4 /src/core/screen.c | |
parent | d72b5f2a0bbd035a98979c3519de90a194f67e05 (diff) | |
parent | 3c82397d3fdbbaa8d1614a6f5eeeaad4ef20d3f6 (diff) | |
download | marco-3ba516419041962944da9f9bdf0cb55810a2ad02.tar.bz2 marco-3ba516419041962944da9f9bdf0cb55810a2ad02.tar.xz |
Merge pull request #26 from sbalneav/master
Deprecations and warnings
Diffstat (limited to 'src/core/screen.c')
-rw-r--r-- | src/core/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/screen.c b/src/core/screen.c index f696d92a..e8fce40a 100644 --- a/src/core/screen.c +++ b/src/core/screen.c @@ -1272,8 +1272,8 @@ meta_screen_ensure_tab_popup (MetaScreen *screen, { MetaWindow *window; MetaRectangle r; - GdkPixbuf *win_pixbuf; - int width, height; + GdkPixbuf *win_pixbuf = NULL; + int width = 0, height = 0; window = tmp->data; |