Fix constness stuff.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@662 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Björn Groenvall
1996-08-20 13:03:11 +00:00
parent 249b7b0725
commit 4e4d77bf04

View File

@@ -29,7 +29,7 @@ char *
hstrerror(int herr)
{
if (0 <= herr && herr < h_nerr)
return h_errlist[herr];
return (char *) h_errlist[herr];
else
return "Error number out of range (hstrerror)";
}