From ece35bc22fdf7c9a5b3b62dbdee7310e0b40055a Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 9 Dec 1996 18:52:11 +0000 Subject: [PATCH] Changes to keep gcc -Wall happy. --- Modules/cstubs | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/Modules/cstubs b/Modules/cstubs index 5f62f143a01..b3c70379d8b 100644 --- a/Modules/cstubs +++ b/Modules/cstubs @@ -70,6 +70,14 @@ Each definition must be contained on one line: #include #include +#ifdef __sgi +extern int devport(); +extern int textwritemask(); +extern int pagewritemask(); +extern int gewrite(); +extern int gettp(); +#endif + #include "allobjects.h" #include "import.h" #include "modsupport.h" @@ -122,7 +130,7 @@ gl_varray(self, args) object *self; object *args; { - object *v, *w; + object *v, *w=NULL; int i, n, width; double vec[3]; object * (*getitem) FPROTO((object *, int)); @@ -638,7 +646,9 @@ gl_lrectwrite(self, args) short y2 ; string parray ; object *s; +#if 0 int pixcount; +#endif if (!getishortarg(args, 5, 0, &x1)) return NULL; if (!getishortarg(args, 5, 1, &y1)) @@ -715,7 +725,7 @@ gl_readdisplay(self, args) parray = (unsigned long *)getstringvalue(rv); size_ret = readdisplay(x1, y1, x2, y2, parray, hints); 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); err_setstr(RuntimeError, "readdisplay returned unexpected length"); return NULL; @@ -805,7 +815,7 @@ gl_unpackrect(self, args) long width, height, packfactor; char *s; object *unpacked, *packed; - int pixcount, packedcount, y; + int pixcount, packedcount; register unsigned char *p; register unsigned long *parray; if (!unpacktab_inited) {