Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The fix to avoid writing into a read-only buffer copies a const char pointer to a non-const char pointer, provoking a warning. For some reason, the old code failed to get a similar warning from the cast, which would have caught the original bug. This fix just adds a const char variable to accept the pointer. TESTED: Now cgps builds without warning, and still works.
- Loading branch information