| Summary: | kdeedu/kiten/dict.cpp doesn't compile on Solaris | ||
|---|---|---|---|
| Product: | [Applications] kiten | Reporter: | Torsten Kasch <tk> |
| Component: | general | Assignee: | Jason Katz-Brown <jasonkb> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Solaris | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | patch for kdeedu/kiten/dict.cpp | ||
|
Description
Torsten Kasch
2003-12-21 16:48:05 UTC
Created attachment 3808 [details] patch for kdeedu/kiten/dict.cpp Applying the attached patch fixed this issue for me; it's basically the same as in bug 65234 Agreed. Subject: kdeedu/kiten CVS commit by mueller: fix compile CCMAIL: 70972-done@bugs.kde.org M +2 -2 dict.cpp 1.48 --- kdeedu/kiten/dict.cpp #1.47:1.48 @@ -115,9 +115,9 @@ File::~File(void) { if (dictPtr != (unsigned char*) MAP_FAILED) - munmap((void *)dictPtr, dictFile.size()); + munmap((char *)dictPtr, dictFile.size()); dictFile.close(); if (indexPtr != (uint32_t*) MAP_FAILED) - munmap((void *)indexPtr, indexFile.size()); + munmap((char *)indexPtr, indexFile.size()); indexFile.close(); } |