phonebook: Add missing fall through statement

This commit is contained in:
Marcel Holtmann 2017-07-11 10:45:48 -07:00
parent 9fa6f20a6f
commit 9b7a6425bd
1 changed files with 1 additions and 0 deletions

View File

@ -127,6 +127,7 @@ static void add_slash(char *dest, const char *src, int len_max, int len)
case ';':
case ',':
dest[j++] = '\\';
/* fall through */
default:
dest[j] = src[i];
break;