Touch args to avoid compiler warnings.
robs [Wed, 20 Jun 2001 16:08:51 +0000 (16:08 +0000)]
libfcgi/fcgio.cpp

index 3ca1f69..379387c 100644 (file)
@@ -1,5 +1,5 @@
 //
-// $Id: fcgio.cpp,v 1.3 2000/07/27 12:21:54 robs Exp $
+// $Id: fcgio.cpp,v 1.4 2001/06/20 16:08:51 robs Exp $
 //
 // Allows you communicate with FastCGI streams using C++ iostream
 // objects
@@ -152,8 +152,8 @@ int fcgi_streambuf::overflow(int c)
 // in case somebody calls this, ignore it
 streambuf * fcgi_streambuf::setbuf(char *s, int n)
    {
-   // tell them what they want to hear to make them
-   // go away
+   // Touch the args to avoid compiler warnings
+   s = NULL; n = 0;
    return this;
    }