diff options
| author | George Hazan <ghazan@miranda.im> | 2018-05-08 20:23:43 +0200 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2018-05-08 20:23:43 +0200 |
| commit | 156e56230c1819245c0d9165629f8077b6417167 (patch) | |
| tree | f9fb97183d4a122a2c2cbd68dad8f7cff6d129b7 /plugins/UserInfoEx/src/ex_import | |
| parent | acaea8d0a8a6208181f90d33f31a0270089017b6 (diff) | |
code cleaning (using new MS coding style)
Diffstat (limited to 'plugins/UserInfoEx/src/ex_import')
| -rw-r--r-- | plugins/UserInfoEx/src/ex_import/svc_ExImINI.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/UserInfoEx/src/ex_import/svc_ExImINI.cpp b/plugins/UserInfoEx/src/ex_import/svc_ExImINI.cpp index 1b7b7b3a76..8be503a6db 100644 --- a/plugins/UserInfoEx/src/ex_import/svc_ExImINI.cpp +++ b/plugins/UserInfoEx/src/ex_import/svc_ExImINI.cpp @@ -230,13 +230,15 @@ static DWORD ImportreadLine(FILE* file, LPSTR &str) case ';': // found a comment line bComment |= (l == 0); - // fall through + __fallthrough; + case '\t': case ' ': // ignore space and tab at the beginning of the line if (l == 0) break; - // fall through + __fallthrough; + default: if (!bComment) { str = mir_strncat_c(str, c); |
