From 2454e52dd46c93928b46a4a26b54141c6901d807 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Mon, 21 Dec 1998 13:54:02 +0000 Subject: Static pointer variable was not initialized to NULL. git-svn-id: file:///fltk/svn/fltk/trunk@166 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/fl_vertex.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/fl_vertex.cxx b/src/fl_vertex.cxx index b2f11cfd7..1d0b834fd 100644 --- a/src/fl_vertex.cxx +++ b/src/fl_vertex.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_vertex.cxx,v 1.3 1998/10/21 14:21:03 mike Exp $" +// "$Id: fl_vertex.cxx,v 1.4 1998/12/21 13:54:02 mike Exp $" // // Portable drawing routines for the Fast Light Tool Kit (FLTK). // @@ -71,7 +71,7 @@ void fl_rotate(double d) { } } -static XPoint *p; +static XPoint *p = (XPoint *)0; // typedef what the x,y fields in a point are: #ifdef WIN32 typedef int COORD_T; @@ -223,5 +223,5 @@ void fl_circle(double x, double y,double r) { } // -// End of "$Id: fl_vertex.cxx,v 1.3 1998/10/21 14:21:03 mike Exp $". +// End of "$Id: fl_vertex.cxx,v 1.4 1998/12/21 13:54:02 mike Exp $". // -- cgit v1.2.3