ntdll: Avoid one warning around assert(0).

This commit is contained in:
Gerald Pfeifer 2009-12-25 11:14:07 +01:00 committed by Alexandre Julliard
parent e49c54d288
commit e8158e48cb
1 changed files with 1 additions and 0 deletions

View File

@ -241,6 +241,7 @@ static inline unsigned int dir_info_size( FILE_INFORMATION_CLASS class, unsigned
return (FIELD_OFFSET( FILE_ID_FULL_DIRECTORY_INFORMATION, FileName[len] ) + 3) & ~3;
default:
assert(0);
return 0;
}
}