View | Details | Raw Unified | Return to bug 158548
Collapse All | Expand All

(-)files/patch-utils-convfont.c (+11 lines)
Added Link Here
1
--- utils/convfont.c.orig	2011-07-01 01:39:01.000000000 +0200
2
+++ utils/convfont.c	2011-07-01 01:39:11.000000000 +0200
3
@@ -14,7 +14,7 @@
4
 FILE *tf;
5
 
6
 
7
-void
8
+int
9
 main (int argc, char **argv)
10
 {
11
   int i;
(-)files/patch-utils-fix132x43.c (+11 lines)
Added Link Here
1
--- utils/fix132x43.c.orig	2011-07-01 01:43:39.000000000 +0200
2
+++ utils/fix132x43.c	2011-07-01 01:43:55.000000000 +0200
3
@@ -54,7 +54,7 @@
4
 static void fixfont (int);
5
 
6
 
7
-void
8
+int
9
 main (int argc, char *argv[])
10
 {
11
   int vgaIOBase;
(-)files/patch-utils-gtf-gtfcalc.c (-2 / +11 lines)
Lines 1-5 Link Here
1
--- utils/gtf/gtfcalc.c.orig	Tue Jan 23 12:48:50 2007
1
--- utils/gtf/gtfcalc.c.orig	1999-07-17 14:13:02.000000000 +0200
2
+++ utils/gtf/gtfcalc.c	Tue Jan 23 12:49:18 2007
2
+++ utils/gtf/gtfcalc.c	2011-07-01 01:48:14.000000000 +0200
3
@@ -45,6 +45,7 @@
3
@@ -45,6 +45,7 @@
4
 #include <string.h>
4
 #include <string.h>
5
 #include <ctype.h>
5
 #include <ctype.h>
Lines 21-23 Link Here
21
 
21
 
22
 static void GetInternalConstants(GTF_constants *c)
22
 static void GetInternalConstants(GTF_constants *c)
23
 /****************************************************************************
23
 /****************************************************************************
24
@@ -329,7 +332,7 @@
25
 
26
 #ifdef	TESTING_GTF
27
 
28
-void main(int argc,char *argv[])
29
+int main(int argc,char *argv[])
30
 {
31
 	FILE		*f;
32
 	double		xPixels,yPixels,freq;
(-)files/patch-utils-restorefont.c (+11 lines)
Added Link Here
1
--- utils/restorefont.c.orig	2011-07-01 01:35:42.000000000 +0200
2
+++ utils/restorefont.c	2011-07-01 01:36:05.000000000 +0200
3
@@ -11,7 +11,7 @@
4
  * given up). This means that there is no major security hole lurking here.
5
  */
6
 
7
-void main(int argc, char *argv[])
8
+int main(int argc, char *argv[])
9
 {
10
     FILE *f;
11
     unsigned char *font;
(-)files/patch-utils-restorepalette.c (+11 lines)
Added Link Here
1
--- utils/restorepalette.c.orig	2011-07-01 01:41:50.000000000 +0200
2
+++ utils/restorepalette.c	2011-07-01 01:42:17.000000000 +0200
3
@@ -105,7 +105,7 @@
4
     }
5
 }
6
 
7
-void
8
+int
9
 main (int argc, char *argv[])
10
 {
11
   int i;
(-)files/patch-utils-restoretextmode.c (+11 lines)
Added Link Here
1
--- utils/restoretextmode.c.orig	2011-07-01 01:40:19.000000000 +0200
2
+++ utils/restoretextmode.c	2011-07-01 01:40:32.000000000 +0200
3
@@ -14,7 +14,7 @@
4
 
5
 unsigned char regs[MAX_REGS];
6
 
7
-void
8
+int
9
 main (int argc, char *argv[])
10
 {
11
   vga_init ();
(-)files/patch-utils-setmclk.c (+13 lines)
Added Link Here
1
--- utils/setmclk.c.orig	2011-07-01 01:44:52.000000000 +0200
2
+++ utils/setmclk.c	2011-07-01 01:45:20.000000000 +0200
3
@@ -41,8 +41,8 @@
4
 #include <vga.h>
5
 #include "../src/libvga.h"	/* For port I/O macros. */
6
 
7
-void
8
-main (void)
9
+int
10
+main(void)
11
 {
12
   vga_init ();
13
   if (vga_getcurrentchipset () != CIRRUS)

Return to bug 158548