blob: 1759c799acf5b0455a7732ca8eb8230ee5dee694 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- spunk/syserror.cc.orig Sat Feb 26 18:04:03 2000
+++ spunk/syserror.cc Sat Feb 26 18:04:18 2000
@@ -238,7 +238,7 @@
return FormatStr (LoadMsg (msUnknown).GetStr (), Code);
} else {
#ifndef SOLARIS
- char* Msg = sys_errlist [Code];
+ char* Msg = (char *)sys_errlist [Code];
#else
char* Msg = strerror (Code);
#endif
|