Skip to content

Commit

Permalink
fixed const correctness in fluid/Fl_Function_Type.cxx (STR #2441)
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7824 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
engelsman committed Nov 13, 2010
1 parent 2e3037f commit ce6043d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fluid/Fl_Function_Type.cxx
Expand Up @@ -471,7 +471,7 @@ Fl_Code_Type Fl_Code_type;
void Fl_Code_Type::write_code1() {
const char* c = name();
if (!c) return;
char *pch;
const char *pch;
const char *ind = indent();
while( (pch=strchr(c,'\n')) )
{
Expand Down

0 comments on commit ce6043d

Please sign in to comment.