summaryrefslogtreecommitdiff
blob: 53d4cf2a1a5b7288ab42cf833890ef113160b82f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all_devices is an exported symbol so we cant declare it static

Fix by Pablo De Nápoli

http://bugs.gentoo.org/133936

--- svgalib-1.9.24/kernel/svgalib_helper/main.c
+++ svgalib-1.9.24/kernel/svgalib_helper/main.c
@@ -55,7 +55,7 @@
 #include "displaystart.h"
 
 int debug=0;
-static int all_devices=0;
+int all_devices=0;
 int num_devices=0;
 
 static char *sdev_id="svgalib_helper";