[#17600] char* -> const char*

Thanks to Sean Bartell (wtachi), was causing many many warnings which distracted from the real problems.
This commit is contained in:
Campbell Barton
2008-09-20 11:08:35 +00:00
parent a12375cb4f
commit f510057fef
55 changed files with 272 additions and 272 deletions

View File

@@ -150,9 +150,9 @@ static BOOL scr_saver_init(int argc, char **argv)
#endif /* WIN32 */
void usage(char* program)
void usage(const char* program)
{
char * consoleoption;
const char * consoleoption;
#ifdef _WIN32
consoleoption = "-c ";
#else