summaryrefslogtreecommitdiff
path: root/src/filename_match.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2010-02-26 21:10:46 +0000
committerMatthias Melcher <fltk@matthiasm.com>2010-02-26 21:10:46 +0000
commit86d292b6c147c72802854433da6bd20db73da44c (patch)
treea4bf88f897eab691bdc401ba5508adc137276e30 /src/filename_match.cxx
parent2668a87af7bbec1bf8a2ae971748f65885fe6fcf (diff)
Adding FALLTHROUGH label to a buch of case fallthroughs in order to make lint happy. STR #2285
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7162 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/filename_match.cxx')
-rw-r--r--src/filename_match.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/filename_match.cxx b/src/filename_match.cxx
index fae1b0e34..dac16a803 100644
--- a/src/filename_match.cxx
+++ b/src/filename_match.cxx
@@ -114,6 +114,7 @@ int fl_filename_match(const char *s, const char *p) {
case '\\': // quote next character
if (*p) p++;
+ /* FALLTHROUGH */
default:
if (tolower(*s) != tolower(*(p-1))) return 0;
s++;