Skip to content

Commit

Permalink
Added /* fallthrough */ comment in case statement.
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7328 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
Manolo Gouy authored and Manolo Gouy committed Mar 24, 2010
1 parent 80c7817 commit 64482fa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Fl_PS_Printer.cxx
Expand Up @@ -868,9 +868,10 @@ void Fl_PSfile_Device::transformed_draw(const char* str, int n, double x, double
i++;
switch (*str) {
case '(': case ')': case '\\' :
fputs("\\" , output);
putc('\\' , output);
/* fallthrough */
default:
fprintf(output, "%c", *str);
putc(*str , output);
}
str++;
}
Expand Down

0 comments on commit 64482fa

Please sign in to comment.