Kaydet (Commit) ece35bc2 authored tarafından Guido van Rossum's avatar Guido van Rossum

Changes to keep gcc -Wall happy.

üst 7ce52be6
...@@ -70,6 +70,14 @@ Each definition must be contained on one line: ...@@ -70,6 +70,14 @@ Each definition must be contained on one line:
#include <gl.h> #include <gl.h>
#include <device.h> #include <device.h>
#ifdef __sgi
extern int devport();
extern int textwritemask();
extern int pagewritemask();
extern int gewrite();
extern int gettp();
#endif
#include "allobjects.h" #include "allobjects.h"
#include "import.h" #include "import.h"
#include "modsupport.h" #include "modsupport.h"
...@@ -122,7 +130,7 @@ gl_varray(self, args) ...@@ -122,7 +130,7 @@ gl_varray(self, args)
object *self; object *self;
object *args; object *args;
{ {
object *v, *w; object *v, *w=NULL;
int i, n, width; int i, n, width;
double vec[3]; double vec[3];
object * (*getitem) FPROTO((object *, int)); object * (*getitem) FPROTO((object *, int));
...@@ -638,7 +646,9 @@ gl_lrectwrite(self, args) ...@@ -638,7 +646,9 @@ gl_lrectwrite(self, args)
short y2 ; short y2 ;
string parray ; string parray ;
object *s; object *s;
#if 0
int pixcount; int pixcount;
#endif
if (!getishortarg(args, 5, 0, &x1)) if (!getishortarg(args, 5, 0, &x1))
return NULL; return NULL;
if (!getishortarg(args, 5, 1, &y1)) if (!getishortarg(args, 5, 1, &y1))
...@@ -715,7 +725,7 @@ gl_readdisplay(self, args) ...@@ -715,7 +725,7 @@ gl_readdisplay(self, args)
parray = (unsigned long *)getstringvalue(rv); parray = (unsigned long *)getstringvalue(rv);
size_ret = readdisplay(x1, y1, x2, y2, parray, hints); size_ret = readdisplay(x1, y1, x2, y2, parray, hints);
if ( size_ret != size ) { if ( size_ret != size ) {
printf("gl_readdisplay: got %d pixels, expected %d\n", printf("gl_readdisplay: got %ld pixels, expected %ld\n",
size_ret, size); size_ret, size);
err_setstr(RuntimeError, "readdisplay returned unexpected length"); err_setstr(RuntimeError, "readdisplay returned unexpected length");
return NULL; return NULL;
...@@ -805,7 +815,7 @@ gl_unpackrect(self, args) ...@@ -805,7 +815,7 @@ gl_unpackrect(self, args)
long width, height, packfactor; long width, height, packfactor;
char *s; char *s;
object *unpacked, *packed; object *unpacked, *packed;
int pixcount, packedcount, y; int pixcount, packedcount;
register unsigned char *p; register unsigned char *p;
register unsigned long *parray; register unsigned long *parray;
if (!unpacktab_inited) { if (!unpacktab_inited) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment