Fix dodgy indentation

This commit is contained in:
Joshua Leung 2016-03-24 15:20:56 +13:00
parent c4956faf99
commit d2244b59d8
1 changed files with 2 additions and 2 deletions

View File

@ -1598,9 +1598,9 @@ void driver_variable_name_validate(DriverVar *dvar)
{
/* Special character blacklist */
const char special_char_blacklist[] = {
'~', '`', '!', '@', '#', '$', '%', '^', '&', '*', '+', '=', '-',
'~', '`', '!', '@', '#', '$', '%', '^', '&', '*', '+', '=', '-',
'/', '\\', '?', ':', ';', '<', '>', '{', '}', '[', ']', '|',
' ', '.', '\t', '\n', '\r'
' ', '.', '\t', '\n', '\r'
};
/* sanity checks */