# HG changeset patch # User ib # Date 1357948547 0 # Node ID 5cc5f1acfc4f576de8dd829149ad5309092d0bdf # Parent 2e7f2ecaaf0b326ca6f7564bc44e60f081cf22d7 Make variable static that is only used inside the file. diff -r 2e7f2ecaaf0b -r 5cc5f1acfc4f libvo/x11_common.c --- a/libvo/x11_common.c Thu Jan 10 20:52:37 2013 +0000 +++ b/libvo/x11_common.c Fri Jan 11 23:55:47 2013 +0000 @@ -83,7 +83,7 @@ #define WIN_LAYER_ONTOP 6 #define WIN_LAYER_ABOVE_DOCK 10 -int fs_layer = WIN_LAYER_ABOVE_DOCK; +static int fs_layer = WIN_LAYER_ABOVE_DOCK; static int orig_layer = 0; static int old_gravity = NorthWestGravity;