mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-20 23:51:29 -07:00
Assorted char * -> const char * API changes.
I went through all the char * parameters and return values I could see in puzzles.h by eye and spotted ones that surely ought to have been const all along.
This commit is contained in:
@ -656,7 +656,7 @@ static char *new_game_desc(const game_params *params, random_state *rs,
|
||||
*/
|
||||
ret = NULL;
|
||||
{
|
||||
char *sep;
|
||||
const char *sep;
|
||||
char buf[80];
|
||||
int retlen;
|
||||
edge *ea;
|
||||
|
Reference in New Issue
Block a user