summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-05-22 21:28:52 +0000
committerjxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-05-22 21:28:52 +0000
commitc6d08dbc9e577b28cdaa879cc7be1626d2f9bebc (patch)
tree88c034d754c7cddcbf2e00582f52a009a0cdb512
parente2435f6500e7079ee4c44a98ce088bf6a6cb75dd (diff)
downloadATCD-c6d08dbc9e577b28cdaa879cc7be1626d2f9bebc.tar.gz
Added a cast to make a warning go away under SGI C++.
-rw-r--r--apps/JAWS/server/HTTP_Request.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/JAWS/server/HTTP_Request.cpp b/apps/JAWS/server/HTTP_Request.cpp
index 5c1fa5e4772..209203eceb3 100644
--- a/apps/JAWS/server/HTTP_Request.cpp
+++ b/apps/JAWS/server/HTTP_Request.cpp
@@ -186,10 +186,10 @@ HTTP_Request::cgi (void) const
return this->cgi_;
}
-const char * const *
+const char **
HTTP_Request::cgi_env (void) const
{
- return this->cgi_env_;
+ return (const char **)this->cgi_env_;
}
const char *