fix stupidness introduced just before commit

edge.strict_endians
cha0smaster 2005-08-14 16:06:33 +00:00
parent a1ef87e393
commit 30263fb749
1 changed files with 2 additions and 2 deletions

View File

@ -455,8 +455,8 @@ int ntfs_index_add_filename(ntfs_inode *ni, FILE_NAME_ATTR *fn, MFT_REF mref)
ntfs_debug("Entering.");
if (!ni || !fn) {
ntfs_error(, "Invalid arguments.");
err = EINVAL;
goto err_out;
errno = EINVAL;
return -1;
}
ictx = ntfs_index_ctx_get(ni, I30, 4);
if (!ictx)